diff --git a/src/abstract_tree/value_node.rs b/src/abstract_tree/value_node.rs index b16e1da..8a31b1e 100644 --- a/src/abstract_tree/value_node.rs +++ b/src/abstract_tree/value_node.rs @@ -344,7 +344,7 @@ impl Ord for ValueNode { } impl PartialOrd for ValueNode { - fn partial_cmp(&self, other: &Self) -> Option { + fn partial_cmp(&self, other: &Self) -> Option { Some(self.cmp(other)) } } diff --git a/tree-sitter-dust/corpus/enums.txt b/tree-sitter-dust/corpus/enums.txt index d7ddd56..dce7132 100644 --- a/tree-sitter-dust/corpus/enums.txt +++ b/tree-sitter-dust/corpus/enums.txt @@ -82,14 +82,15 @@ enum Foobar { (type_arguments (type (identifier) - (type - (identifier))))))))) + (type_arguments + (type + (identifier)))))))))) ================================================================================ Simple Enum Instance ================================================================================ -Foobar::Foo +FooBar::Foo -------------------------------------------------------------------------------- diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 7d89601..5221183 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -365,14 +365,7 @@ module.exports = grammar({ // Custom type with arguments seq( $.identifier, - '<', - repeat1( - seq( - $.type, - optional(','), - ), - ), - '>', + $.type_arguments ), // Map with exact fields diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index a2fb4ce..a6dcde3 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -1104,36 +1104,8 @@ "name": "identifier" }, { - "type": "STRING", - "value": "<" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": ">" + "type": "SYMBOL", + "name": "type_arguments" } ] }, diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 7fcd9fa..64ae601 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -727,6 +727,10 @@ "type": "type", "named": true }, + { + "type": "type_arguments", + "named": true + }, { "type": "type_specification", "named": true diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 67d55b0..1b1aacf 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 853 +#define STATE_COUNT 863 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 127 #define ALIAS_COUNT 0 @@ -932,66 +932,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 2, [5] = 5, [6] = 6, - [7] = 5, + [7] = 6, [8] = 8, - [9] = 8, - [10] = 6, - [11] = 8, - [12] = 5, - [13] = 13, + [9] = 9, + [10] = 8, + [11] = 5, + [12] = 12, + [13] = 12, [14] = 8, - [15] = 6, - [16] = 8, + [15] = 5, + [16] = 5, [17] = 5, [18] = 6, - [19] = 13, - [20] = 6, - [21] = 8, + [19] = 12, + [20] = 8, + [21] = 6, [22] = 5, - [23] = 13, - [24] = 13, - [25] = 8, - [26] = 5, - [27] = 27, - [28] = 6, + [23] = 8, + [24] = 8, + [25] = 12, + [26] = 6, + [27] = 5, + [28] = 8, [29] = 5, - [30] = 13, - [31] = 5, - [32] = 13, - [33] = 8, + [30] = 12, + [31] = 12, + [32] = 12, + [33] = 6, [34] = 34, - [35] = 8, - [36] = 13, - [37] = 5, - [38] = 6, - [39] = 13, - [40] = 13, - [41] = 8, + [35] = 9, + [36] = 12, + [37] = 8, + [38] = 5, + [39] = 6, + [40] = 6, + [41] = 12, [42] = 6, [43] = 6, - [44] = 27, + [44] = 8, [45] = 45, - [46] = 45, - [47] = 47, + [46] = 46, + [47] = 46, [48] = 48, [49] = 49, - [50] = 50, - [51] = 45, - [52] = 52, - [53] = 53, - [54] = 49, - [55] = 55, - [56] = 52, - [57] = 49, - [58] = 58, + [50] = 45, + [51] = 51, + [52] = 45, + [53] = 48, + [54] = 46, + [55] = 46, + [56] = 48, + [57] = 48, + [58] = 46, [59] = 59, - [60] = 52, - [61] = 52, - [62] = 49, - [63] = 45, - [64] = 52, - [65] = 45, - [66] = 49, + [60] = 60, + [61] = 45, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 48, + [66] = 45, [67] = 67, [68] = 67, [69] = 67, @@ -1005,7 +1005,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 80, + [80] = 77, [81] = 81, [82] = 82, [83] = 83, @@ -1015,7 +1015,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [87] = 87, [88] = 88, [89] = 89, - [90] = 77, + [90] = 90, [91] = 91, [92] = 92, [93] = 93, @@ -1026,31 +1026,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [98] = 98, [99] = 99, [100] = 100, - [101] = 97, - [102] = 102, + [101] = 101, + [102] = 97, [103] = 103, - [104] = 104, - [105] = 104, + [104] = 103, + [105] = 105, [106] = 106, [107] = 106, - [108] = 103, + [108] = 105, [109] = 109, [110] = 110, [111] = 111, - [112] = 95, + [112] = 91, [113] = 113, [114] = 114, [115] = 115, - [116] = 114, + [116] = 116, [117] = 117, [118] = 118, [119] = 119, - [120] = 113, + [120] = 116, [121] = 121, - [122] = 117, - [123] = 123, - [124] = 123, - [125] = 125, + [122] = 122, + [123] = 115, + [124] = 113, + [125] = 121, [126] = 126, [127] = 127, [128] = 128, @@ -1059,187 +1059,187 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [131] = 131, [132] = 132, [133] = 133, - [134] = 126, - [135] = 135, + [134] = 134, + [135] = 130, [136] = 136, [137] = 137, - [138] = 130, - [139] = 139, - [140] = 96, - [141] = 88, - [142] = 83, - [143] = 100, - [144] = 79, - [145] = 85, - [146] = 98, - [147] = 99, - [148] = 95, - [149] = 102, - [150] = 84, - [151] = 87, - [152] = 94, - [153] = 91, - [154] = 92, - [155] = 89, - [156] = 86, - [157] = 78, - [158] = 77, - [159] = 80, - [160] = 82, - [161] = 93, - [162] = 162, + [138] = 138, + [139] = 131, + [140] = 140, + [141] = 95, + [142] = 98, + [143] = 91, + [144] = 90, + [145] = 92, + [146] = 89, + [147] = 87, + [148] = 88, + [149] = 86, + [150] = 96, + [151] = 85, + [152] = 101, + [153] = 83, + [154] = 77, + [155] = 100, + [156] = 79, + [157] = 99, + [158] = 93, + [159] = 82, + [160] = 94, + [161] = 78, + [162] = 84, [163] = 163, [164] = 164, - [165] = 163, - [166] = 166, - [167] = 166, - [168] = 164, - [169] = 169, - [170] = 170, - [171] = 166, - [172] = 163, - [173] = 166, - [174] = 166, - [175] = 164, - [176] = 163, - [177] = 164, - [178] = 169, - [179] = 162, - [180] = 164, + [165] = 165, + [166] = 165, + [167] = 164, + [168] = 165, + [169] = 165, + [170] = 163, + [171] = 171, + [172] = 172, + [173] = 163, + [174] = 165, + [175] = 175, + [176] = 175, + [177] = 172, + [178] = 165, + [179] = 172, + [180] = 163, [181] = 164, - [182] = 169, - [183] = 166, + [182] = 163, + [183] = 172, [184] = 184, - [185] = 162, - [186] = 169, - [187] = 166, - [188] = 164, - [189] = 162, - [190] = 162, - [191] = 169, - [192] = 164, + [185] = 163, + [186] = 164, + [187] = 175, + [188] = 175, + [189] = 165, + [190] = 175, + [191] = 165, + [192] = 172, [193] = 163, - [194] = 166, - [195] = 97, - [196] = 111, - [197] = 104, - [198] = 198, - [199] = 109, - [200] = 200, - [201] = 201, + [194] = 164, + [195] = 163, + [196] = 97, + [197] = 109, + [198] = 106, + [199] = 199, + [200] = 199, + [201] = 199, [202] = 202, [203] = 203, - [204] = 203, - [205] = 203, - [206] = 203, - [207] = 207, - [208] = 110, + [204] = 204, + [205] = 205, + [206] = 202, + [207] = 199, + [208] = 202, [209] = 202, - [210] = 103, - [211] = 211, + [210] = 114, + [211] = 199, [212] = 202, - [213] = 207, - [214] = 214, - [215] = 203, - [216] = 202, - [217] = 202, - [218] = 218, - [219] = 201, - [220] = 201, - [221] = 203, - [222] = 203, - [223] = 202, - [224] = 211, - [225] = 200, - [226] = 203, - [227] = 119, - [228] = 202, - [229] = 198, - [230] = 115, - [231] = 95, - [232] = 201, - [233] = 202, - [234] = 203, + [213] = 202, + [214] = 199, + [215] = 91, + [216] = 216, + [217] = 217, + [218] = 216, + [219] = 216, + [220] = 220, + [221] = 103, + [222] = 222, + [223] = 204, + [224] = 110, + [225] = 205, + [226] = 199, + [227] = 202, + [228] = 217, + [229] = 105, + [230] = 111, + [231] = 216, + [232] = 216, + [233] = 220, + [234] = 202, [235] = 202, - [236] = 106, - [237] = 201, - [238] = 214, - [239] = 202, - [240] = 121, - [241] = 203, - [242] = 129, - [243] = 132, - [244] = 139, - [245] = 103, - [246] = 104, - [247] = 106, - [248] = 136, - [249] = 135, - [250] = 127, - [251] = 137, - [252] = 104, - [253] = 133, - [254] = 125, - [255] = 106, - [256] = 103, - [257] = 131, - [258] = 128, - [259] = 102, - [260] = 260, - [261] = 261, - [262] = 117, - [263] = 117, - [264] = 264, - [265] = 265, - [266] = 123, - [267] = 123, - [268] = 117, - [269] = 113, - [270] = 123, - [271] = 114, - [272] = 114, + [236] = 199, + [237] = 119, + [238] = 199, + [239] = 118, + [240] = 199, + [241] = 202, + [242] = 117, + [243] = 203, + [244] = 127, + [245] = 105, + [246] = 138, + [247] = 105, + [248] = 106, + [249] = 132, + [250] = 137, + [251] = 126, + [252] = 103, + [253] = 136, + [254] = 133, + [255] = 103, + [256] = 140, + [257] = 128, + [258] = 129, + [259] = 134, + [260] = 106, + [261] = 121, + [262] = 113, + [263] = 121, + [264] = 113, + [265] = 115, + [266] = 113, + [267] = 267, + [268] = 116, + [269] = 269, + [270] = 121, + [271] = 271, + [272] = 100, [273] = 273, - [274] = 118, - [275] = 130, - [276] = 114, - [277] = 126, - [278] = 103, - [279] = 279, - [280] = 103, - [281] = 106, - [282] = 104, - [283] = 279, - [284] = 279, - [285] = 279, - [286] = 99, - [287] = 98, - [288] = 288, - [289] = 104, - [290] = 106, - [291] = 279, - [292] = 292, - [293] = 98, - [294] = 294, - [295] = 294, - [296] = 294, - [297] = 294, - [298] = 294, - [299] = 99, - [300] = 294, - [301] = 301, - [302] = 302, + [274] = 116, + [275] = 275, + [276] = 131, + [277] = 116, + [278] = 122, + [279] = 130, + [280] = 98, + [281] = 281, + [282] = 282, + [283] = 99, + [284] = 281, + [285] = 105, + [286] = 281, + [287] = 105, + [288] = 133, + [289] = 281, + [290] = 103, + [291] = 281, + [292] = 103, + [293] = 106, + [294] = 106, + [295] = 295, + [296] = 295, + [297] = 297, + [298] = 295, + [299] = 295, + [300] = 300, + [301] = 99, + [302] = 98, [303] = 303, - [304] = 304, - [305] = 305, + [304] = 295, + [305] = 295, [306] = 110, - [307] = 114, - [308] = 109, - [309] = 114, + [307] = 133, + [308] = 116, + [309] = 116, [310] = 310, [311] = 311, [312] = 312, [313] = 313, - [314] = 314, + [314] = 111, [315] = 315, [316] = 316, [317] = 317, @@ -1249,535 +1249,545 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [321] = 321, [322] = 322, [323] = 323, - [324] = 324, - [325] = 314, + [324] = 317, + [325] = 325, [326] = 326, - [327] = 315, - [328] = 102, + [327] = 327, + [328] = 323, [329] = 329, [330] = 330, - [331] = 326, + [331] = 331, [332] = 332, - [333] = 333, + [333] = 326, [334] = 334, [335] = 335, - [336] = 336, - [337] = 317, + [336] = 100, + [337] = 337, [338] = 338, - [339] = 311, + [339] = 318, [340] = 340, [341] = 341, - [342] = 341, - [343] = 77, + [342] = 342, + [343] = 322, [344] = 344, - [345] = 77, - [346] = 344, + [345] = 344, + [346] = 77, [347] = 347, - [348] = 344, - [349] = 344, - [350] = 344, - [351] = 344, - [352] = 96, - [353] = 97, - [354] = 79, - [355] = 91, - [356] = 80, - [357] = 88, - [358] = 78, - [359] = 106, - [360] = 99, - [361] = 93, - [362] = 104, - [363] = 85, - [364] = 264, - [365] = 94, - [366] = 98, - [367] = 103, - [368] = 102, - [369] = 95, - [370] = 100, - [371] = 89, - [372] = 92, - [373] = 87, - [374] = 84, - [375] = 83, - [376] = 86, - [377] = 97, - [378] = 82, - [379] = 265, - [380] = 106, - [381] = 104, - [382] = 103, - [383] = 273, - [384] = 104, - [385] = 103, + [348] = 347, + [349] = 347, + [350] = 350, + [351] = 77, + [352] = 347, + [353] = 347, + [354] = 347, + [355] = 95, + [356] = 97, + [357] = 97, + [358] = 96, + [359] = 103, + [360] = 90, + [361] = 98, + [362] = 92, + [363] = 101, + [364] = 79, + [365] = 273, + [366] = 93, + [367] = 106, + [368] = 100, + [369] = 87, + [370] = 83, + [371] = 105, + [372] = 267, + [373] = 78, + [374] = 88, + [375] = 82, + [376] = 89, + [377] = 99, + [378] = 86, + [379] = 85, + [380] = 84, + [381] = 91, + [382] = 94, + [383] = 105, + [384] = 275, + [385] = 105, [386] = 106, - [387] = 111, - [388] = 114, - [389] = 288, - [390] = 117, - [391] = 114, - [392] = 123, - [393] = 126, - [394] = 109, - [395] = 95, - [396] = 118, - [397] = 119, - [398] = 110, - [399] = 102, - [400] = 113, - [401] = 103, - [402] = 99, - [403] = 114, - [404] = 302, - [405] = 292, - [406] = 104, + [387] = 103, + [388] = 103, + [389] = 106, + [390] = 282, + [391] = 116, + [392] = 109, + [393] = 297, + [394] = 100, + [395] = 99, + [396] = 105, + [397] = 131, + [398] = 115, + [399] = 113, + [400] = 300, + [401] = 91, + [402] = 119, + [403] = 116, + [404] = 111, + [405] = 122, + [406] = 106, [407] = 98, - [408] = 106, - [409] = 111, - [410] = 410, - [411] = 411, - [412] = 125, - [413] = 136, - [414] = 410, - [415] = 305, - [416] = 310, - [417] = 96, - [418] = 113, - [419] = 106, - [420] = 104, - [421] = 303, - [422] = 304, - [423] = 109, + [408] = 103, + [409] = 116, + [410] = 114, + [411] = 110, + [412] = 121, + [413] = 115, + [414] = 95, + [415] = 109, + [416] = 416, + [417] = 105, + [418] = 101, + [419] = 109, + [420] = 420, + [421] = 421, + [422] = 106, + [423] = 111, [424] = 110, - [425] = 111, - [426] = 103, - [427] = 121, - [428] = 115, - [429] = 104, - [430] = 100, - [431] = 126, - [432] = 432, - [433] = 433, - [434] = 106, - [435] = 103, - [436] = 130, - [437] = 123, - [438] = 314, - [439] = 432, - [440] = 96, - [441] = 121, - [442] = 442, - [443] = 443, - [444] = 315, - [445] = 442, - [446] = 128, + [425] = 130, + [426] = 131, + [427] = 105, + [428] = 106, + [429] = 310, + [430] = 313, + [431] = 431, + [432] = 95, + [433] = 103, + [434] = 312, + [435] = 311, + [436] = 416, + [437] = 127, + [438] = 128, + [439] = 439, + [440] = 118, + [441] = 421, + [442] = 420, + [443] = 117, + [444] = 318, + [445] = 317, + [446] = 446, [447] = 117, - [448] = 115, - [449] = 411, - [450] = 78, - [451] = 132, - [452] = 84, - [453] = 87, - [454] = 135, - [455] = 89, - [456] = 95, - [457] = 80, - [458] = 458, - [459] = 139, - [460] = 133, - [461] = 114, - [462] = 99, - [463] = 129, - [464] = 127, - [465] = 131, - [466] = 132, - [467] = 467, - [468] = 80, - [469] = 100, - [470] = 95, - [471] = 89, - [472] = 87, - [473] = 98, - [474] = 84, - [475] = 326, - [476] = 320, - [477] = 95, - [478] = 93, - [479] = 119, + [448] = 118, + [449] = 121, + [450] = 113, + [451] = 103, + [452] = 119, + [453] = 439, + [454] = 78, + [455] = 98, + [456] = 89, + [457] = 99, + [458] = 93, + [459] = 113, + [460] = 100, + [461] = 83, + [462] = 138, + [463] = 126, + [464] = 140, + [465] = 94, + [466] = 116, + [467] = 84, + [468] = 98, + [469] = 121, + [470] = 82, + [471] = 78, + [472] = 99, + [473] = 96, + [474] = 90, + [475] = 320, + [476] = 92, + [477] = 87, + [478] = 323, + [479] = 114, [480] = 326, - [481] = 82, - [482] = 125, - [483] = 137, - [484] = 136, - [485] = 83, - [486] = 313, - [487] = 119, - [488] = 99, - [489] = 139, - [490] = 102, - [491] = 317, - [492] = 79, - [493] = 129, - [494] = 131, - [495] = 317, - [496] = 322, - [497] = 85, - [498] = 82, - [499] = 102, - [500] = 99, - [501] = 83, - [502] = 98, - [503] = 321, - [504] = 334, - [505] = 333, - [506] = 330, - [507] = 332, - [508] = 329, - [509] = 94, - [510] = 79, - [511] = 324, - [512] = 102, - [513] = 98, - [514] = 95, - [515] = 338, - [516] = 86, - [517] = 92, - [518] = 340, - [519] = 316, - [520] = 94, - [521] = 91, - [522] = 86, - [523] = 117, - [524] = 336, - [525] = 335, - [526] = 92, - [527] = 91, - [528] = 123, - [529] = 130, - [530] = 137, - [531] = 312, + [481] = 91, + [482] = 88, + [483] = 86, + [484] = 85, + [485] = 91, + [486] = 79, + [487] = 129, + [488] = 128, + [489] = 101, + [490] = 323, + [491] = 326, + [492] = 84, + [493] = 137, + [494] = 100, + [495] = 316, + [496] = 341, + [497] = 132, + [498] = 134, + [499] = 136, + [500] = 342, + [501] = 325, + [502] = 89, + [503] = 334, + [504] = 98, + [505] = 330, + [506] = 99, + [507] = 83, + [508] = 133, + [509] = 340, + [510] = 338, + [511] = 93, + [512] = 94, + [513] = 327, + [514] = 514, + [515] = 329, + [516] = 82, + [517] = 100, + [518] = 315, + [519] = 91, + [520] = 96, + [521] = 90, + [522] = 92, + [523] = 332, + [524] = 337, + [525] = 321, + [526] = 87, + [527] = 319, + [528] = 114, + [529] = 331, + [530] = 88, + [531] = 86, [532] = 85, - [533] = 323, - [534] = 93, - [535] = 88, - [536] = 78, - [537] = 318, - [538] = 88, - [539] = 109, - [540] = 540, - [541] = 541, + [533] = 91, + [534] = 79, + [535] = 535, + [536] = 136, + [537] = 134, + [538] = 132, + [539] = 137, + [540] = 130, + [541] = 129, [542] = 542, - [543] = 543, - [544] = 544, - [545] = 544, - [546] = 114, - [547] = 121, - [548] = 548, - [549] = 540, - [550] = 540, - [551] = 548, - [552] = 544, - [553] = 543, - [554] = 542, - [555] = 555, - [556] = 541, - [557] = 557, - [558] = 558, - [559] = 541, - [560] = 542, - [561] = 540, - [562] = 548, - [563] = 544, - [564] = 564, - [565] = 128, - [566] = 543, - [567] = 544, - [568] = 548, - [569] = 543, - [570] = 548, - [571] = 114, - [572] = 542, - [573] = 541, - [574] = 119, - [575] = 123, - [576] = 117, - [577] = 540, - [578] = 110, - [579] = 542, - [580] = 110, - [581] = 109, - [582] = 541, - [583] = 117, - [584] = 123, - [585] = 543, - [586] = 544, - [587] = 564, - [588] = 115, - [589] = 128, - [590] = 541, - [591] = 542, - [592] = 548, - [593] = 121, - [594] = 540, - [595] = 555, - [596] = 115, - [597] = 127, - [598] = 598, - [599] = 129, - [600] = 136, - [601] = 137, - [602] = 131, - [603] = 132, - [604] = 604, - [605] = 605, - [606] = 125, - [607] = 129, - [608] = 139, - [609] = 131, - [610] = 139, - [611] = 135, - [612] = 605, - [613] = 136, - [614] = 135, - [615] = 615, - [616] = 132, + [543] = 121, + [544] = 116, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 542, + [549] = 549, + [550] = 546, + [551] = 551, + [552] = 552, + [553] = 118, + [554] = 552, + [555] = 551, + [556] = 549, + [557] = 549, + [558] = 542, + [559] = 547, + [560] = 546, + [561] = 547, + [562] = 542, + [563] = 549, + [564] = 547, + [565] = 552, + [566] = 566, + [567] = 547, + [568] = 117, + [569] = 551, + [570] = 552, + [571] = 542, + [572] = 549, + [573] = 127, + [574] = 551, + [575] = 575, + [576] = 116, + [577] = 119, + [578] = 546, + [579] = 114, + [580] = 547, + [581] = 552, + [582] = 549, + [583] = 111, + [584] = 121, + [585] = 110, + [586] = 113, + [587] = 551, + [588] = 552, + [589] = 117, + [590] = 110, + [591] = 111, + [592] = 575, + [593] = 552, + [594] = 551, + [595] = 127, + [596] = 113, + [597] = 119, + [598] = 546, + [599] = 549, + [600] = 118, + [601] = 547, + [602] = 542, + [603] = 603, + [604] = 140, + [605] = 134, + [606] = 132, + [607] = 133, + [608] = 136, + [609] = 603, + [610] = 137, + [611] = 611, + [612] = 132, + [613] = 140, + [614] = 128, + [615] = 603, + [616] = 138, [617] = 617, - [618] = 605, - [619] = 133, - [620] = 127, - [621] = 621, - [622] = 605, + [618] = 129, + [619] = 137, + [620] = 134, + [621] = 603, + [622] = 138, [623] = 623, - [624] = 137, - [625] = 133, - [626] = 605, - [627] = 125, - [628] = 621, - [629] = 605, - [630] = 630, - [631] = 630, - [632] = 632, - [633] = 630, - [634] = 634, + [624] = 128, + [625] = 603, + [626] = 129, + [627] = 627, + [628] = 603, + [629] = 629, + [630] = 126, + [631] = 133, + [632] = 136, + [633] = 603, + [634] = 126, [635] = 635, [636] = 636, - [637] = 630, + [637] = 636, [638] = 638, - [639] = 636, - [640] = 634, - [641] = 636, - [642] = 636, + [639] = 639, + [640] = 640, + [641] = 635, + [642] = 640, [643] = 635, - [644] = 632, - [645] = 635, - [646] = 635, - [647] = 634, - [648] = 638, - [649] = 632, - [650] = 635, + [644] = 639, + [645] = 645, + [646] = 646, + [647] = 639, + [648] = 636, + [649] = 640, + [650] = 646, [651] = 635, - [652] = 634, - [653] = 636, - [654] = 632, - [655] = 655, - [656] = 656, - [657] = 632, - [658] = 634, - [659] = 630, - [660] = 634, - [661] = 630, - [662] = 106, - [663] = 103, - [664] = 104, - [665] = 103, - [666] = 106, - [667] = 104, - [668] = 114, - [669] = 669, - [670] = 109, - [671] = 110, - [672] = 114, - [673] = 315, - [674] = 315, - [675] = 314, - [676] = 676, + [652] = 639, + [653] = 640, + [654] = 636, + [655] = 646, + [656] = 636, + [657] = 636, + [658] = 645, + [659] = 646, + [660] = 646, + [661] = 639, + [662] = 635, + [663] = 635, + [664] = 636, + [665] = 665, + [666] = 640, + [667] = 640, + [668] = 640, + [669] = 105, + [670] = 106, + [671] = 103, + [672] = 103, + [673] = 106, + [674] = 105, + [675] = 116, + [676] = 318, [677] = 677, - [678] = 676, - [679] = 679, - [680] = 680, - [681] = 314, - [682] = 680, - [683] = 680, - [684] = 96, - [685] = 680, - [686] = 680, + [678] = 116, + [679] = 110, + [680] = 111, + [681] = 681, + [682] = 317, + [683] = 318, + [684] = 684, + [685] = 681, + [686] = 686, [687] = 687, - [688] = 688, - [689] = 687, - [690] = 688, - [691] = 691, - [692] = 691, - [693] = 693, + [688] = 686, + [689] = 686, + [690] = 95, + [691] = 686, + [692] = 686, + [693] = 317, [694] = 694, [695] = 695, - [696] = 691, - [697] = 691, + [696] = 696, + [697] = 697, [698] = 698, - [699] = 699, + [699] = 695, [700] = 700, - [701] = 691, - [702] = 702, - [703] = 702, - [704] = 700, - [705] = 695, - [706] = 695, - [707] = 687, - [708] = 688, - [709] = 694, - [710] = 688, - [711] = 711, + [701] = 701, + [702] = 696, + [703] = 696, + [704] = 704, + [705] = 696, + [706] = 706, + [707] = 704, + [708] = 708, + [709] = 708, + [710] = 710, + [711] = 706, [712] = 712, [713] = 713, - [714] = 691, - [715] = 688, - [716] = 687, - [717] = 702, - [718] = 695, - [719] = 719, + [714] = 708, + [715] = 706, + [716] = 695, + [717] = 696, + [718] = 718, + [719] = 701, [720] = 720, - [721] = 694, - [722] = 722, + [721] = 697, + [722] = 695, [723] = 723, [724] = 724, - [725] = 700, - [726] = 702, - [727] = 724, - [728] = 728, - [729] = 713, - [730] = 694, - [731] = 702, - [732] = 700, - [733] = 733, - [734] = 702, - [735] = 735, - [736] = 694, - [737] = 737, - [738] = 738, - [739] = 700, - [740] = 720, - [741] = 700, + [725] = 695, + [726] = 726, + [727] = 697, + [728] = 696, + [729] = 726, + [730] = 723, + [731] = 704, + [732] = 708, + [733] = 706, + [734] = 704, + [735] = 708, + [736] = 701, + [737] = 701, + [738] = 695, + [739] = 697, + [740] = 718, + [741] = 701, [742] = 742, - [743] = 694, - [744] = 687, - [745] = 695, - [746] = 695, - [747] = 688, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 697, [748] = 748, - [749] = 749, - [750] = 722, + [749] = 697, + [750] = 119, [751] = 751, - [752] = 752, + [752] = 706, [753] = 753, - [754] = 752, - [755] = 755, - [756] = 756, - [757] = 753, - [758] = 758, - [759] = 753, + [754] = 754, + [755] = 720, + [756] = 701, + [757] = 704, + [758] = 708, + [759] = 706, [760] = 760, - [761] = 753, - [762] = 762, + [761] = 761, + [762] = 760, [763] = 763, - [764] = 756, - [765] = 760, - [766] = 760, - [767] = 758, - [768] = 760, - [769] = 752, - [770] = 770, - [771] = 756, - [772] = 753, - [773] = 773, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 118, + [769] = 761, + [770] = 764, + [771] = 771, + [772] = 772, + [773] = 766, [774] = 774, - [775] = 752, - [776] = 776, - [777] = 756, + [775] = 761, + [776] = 767, + [777] = 767, [778] = 778, - [779] = 760, + [779] = 767, [780] = 780, - [781] = 756, - [782] = 753, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 756, - [787] = 760, - [788] = 752, - [789] = 789, - [790] = 790, - [791] = 791, + [781] = 781, + [782] = 766, + [783] = 760, + [784] = 767, + [785] = 117, + [786] = 766, + [787] = 787, + [788] = 788, + [789] = 761, + [790] = 760, + [791] = 760, [792] = 792, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 790, + [793] = 766, + [794] = 761, + [795] = 761, + [796] = 766, + [797] = 767, [798] = 798, [799] = 799, [800] = 800, - [801] = 798, - [802] = 798, + [801] = 801, + [802] = 802, [803] = 803, - [804] = 795, - [805] = 796, - [806] = 798, - [807] = 799, - [808] = 798, - [809] = 798, - [810] = 798, - [811] = 798, - [812] = 798, - [813] = 795, - [814] = 796, + [804] = 800, + [805] = 805, + [806] = 799, + [807] = 807, + [808] = 807, + [809] = 799, + [810] = 807, + [811] = 811, + [812] = 807, + [813] = 813, + [814] = 800, [815] = 799, - [816] = 798, - [817] = 798, - [818] = 798, - [819] = 800, - [820] = 820, - [821] = 795, - [822] = 796, - [823] = 791, - [824] = 800, - [825] = 825, - [826] = 795, - [827] = 796, - [828] = 795, - [829] = 796, - [830] = 795, - [831] = 831, - [832] = 796, - [833] = 833, - [834] = 800, - [835] = 799, - [836] = 798, - [837] = 792, - [838] = 795, - [839] = 796, - [840] = 800, - [841] = 841, - [842] = 831, - [843] = 825, - [844] = 844, - [845] = 799, - [846] = 798, - [847] = 799, - [848] = 798, + [816] = 807, + [817] = 802, + [818] = 802, + [819] = 802, + [820] = 802, + [821] = 821, + [822] = 802, + [823] = 799, + [824] = 807, + [825] = 802, + [826] = 802, + [827] = 827, + [828] = 799, + [829] = 829, + [830] = 807, + [831] = 802, + [832] = 832, + [833] = 799, + [834] = 834, + [835] = 802, + [836] = 800, + [837] = 802, + [838] = 801, + [839] = 807, + [840] = 829, + [841] = 799, + [842] = 801, + [843] = 827, + [844] = 802, + [845] = 801, + [846] = 846, + [847] = 802, + [848] = 801, [849] = 849, - [850] = 795, - [851] = 844, - [852] = 800, + [850] = 834, + [851] = 801, + [852] = 852, + [853] = 802, + [854] = 854, + [855] = 800, + [856] = 852, + [857] = 857, + [858] = 800, + [859] = 857, + [860] = 799, + [861] = 802, + [862] = 813, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1873,7 +1883,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(161); if (lookahead == '=') ADVANCE(30); if (lookahead == '>') ADVANCE(158); - if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'a') ADVANCE(40); if (lookahead == '{') ADVANCE(106); if (lookahead == '|') ADVANCE(42); if (lookahead == '\t' || @@ -1922,7 +1932,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(161); if (lookahead == '=') ADVANCE(131); if (lookahead == '>') ADVANCE(158); - if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'a') ADVANCE(39); if (lookahead == '{') ADVANCE(106); if (lookahead == '|') ADVANCE(42); if (lookahead == '\t' || @@ -2426,10 +2436,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(172); END_STATE(); case 39: - if (lookahead == 's') ADVANCE(62); + if (lookahead == 's') ADVANCE(66); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(66); + if (lookahead == 's') ADVANCE(62); END_STATE(); case 41: if (lookahead == '|') ADVANCE(52); @@ -4041,24 +4051,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [100] = {.lex_state = 44}, [101] = {.lex_state = 44}, [102] = {.lex_state = 44}, - [103] = {.lex_state = 8}, - [104] = {.lex_state = 45}, - [105] = {.lex_state = 8}, - [106] = {.lex_state = 8}, - [107] = {.lex_state = 45}, - [108] = {.lex_state = 45}, + [103] = {.lex_state = 45}, + [104] = {.lex_state = 8}, + [105] = {.lex_state = 45}, + [106] = {.lex_state = 45}, + [107] = {.lex_state = 8}, + [108] = {.lex_state = 8}, [109] = {.lex_state = 44}, [110] = {.lex_state = 44}, [111] = {.lex_state = 44}, [112] = {.lex_state = 44}, [113] = {.lex_state = 44}, - [114] = {.lex_state = 45}, + [114] = {.lex_state = 44}, [115] = {.lex_state = 44}, - [116] = {.lex_state = 8}, + [116] = {.lex_state = 45}, [117] = {.lex_state = 44}, [118] = {.lex_state = 44}, [119] = {.lex_state = 44}, - [120] = {.lex_state = 44}, + [120] = {.lex_state = 8}, [121] = {.lex_state = 44}, [122] = {.lex_state = 44}, [123] = {.lex_state = 44}, @@ -4078,7 +4088,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 44}, [138] = {.lex_state = 44}, [139] = {.lex_state = 44}, - [140] = {.lex_state = 1}, + [140] = {.lex_state = 44}, [141] = {.lex_state = 1}, [142] = {.lex_state = 1}, [143] = {.lex_state = 1}, @@ -4100,7 +4110,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 1}, [160] = {.lex_state = 1}, [161] = {.lex_state = 1}, - [162] = {.lex_state = 14}, + [162] = {.lex_state = 1}, [163] = {.lex_state = 14}, [164] = {.lex_state = 14}, [165] = {.lex_state = 14}, @@ -4133,11 +4143,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [192] = {.lex_state = 14}, [193] = {.lex_state = 14}, [194] = {.lex_state = 14}, - [195] = {.lex_state = 1}, + [195] = {.lex_state = 14}, [196] = {.lex_state = 1}, - [197] = {.lex_state = 6}, - [198] = {.lex_state = 14}, - [199] = {.lex_state = 1}, + [197] = {.lex_state = 1}, + [198] = {.lex_state = 6}, + [199] = {.lex_state = 14}, [200] = {.lex_state = 14}, [201] = {.lex_state = 14}, [202] = {.lex_state = 14}, @@ -4146,110 +4156,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 14}, [206] = {.lex_state = 14}, [207] = {.lex_state = 14}, - [208] = {.lex_state = 1}, + [208] = {.lex_state = 14}, [209] = {.lex_state = 14}, - [210] = {.lex_state = 6}, + [210] = {.lex_state = 1}, [211] = {.lex_state = 14}, [212] = {.lex_state = 14}, [213] = {.lex_state = 14}, [214] = {.lex_state = 14}, - [215] = {.lex_state = 14}, + [215] = {.lex_state = 1}, [216] = {.lex_state = 14}, [217] = {.lex_state = 14}, [218] = {.lex_state = 14}, [219] = {.lex_state = 14}, [220] = {.lex_state = 14}, - [221] = {.lex_state = 14}, + [221] = {.lex_state = 6}, [222] = {.lex_state = 14}, [223] = {.lex_state = 14}, - [224] = {.lex_state = 14}, + [224] = {.lex_state = 1}, [225] = {.lex_state = 14}, [226] = {.lex_state = 14}, - [227] = {.lex_state = 1}, + [227] = {.lex_state = 14}, [228] = {.lex_state = 14}, - [229] = {.lex_state = 14}, + [229] = {.lex_state = 6}, [230] = {.lex_state = 1}, - [231] = {.lex_state = 1}, + [231] = {.lex_state = 14}, [232] = {.lex_state = 14}, [233] = {.lex_state = 14}, [234] = {.lex_state = 14}, [235] = {.lex_state = 14}, - [236] = {.lex_state = 6}, - [237] = {.lex_state = 14}, + [236] = {.lex_state = 14}, + [237] = {.lex_state = 1}, [238] = {.lex_state = 14}, - [239] = {.lex_state = 14}, - [240] = {.lex_state = 1}, + [239] = {.lex_state = 1}, + [240] = {.lex_state = 14}, [241] = {.lex_state = 14}, [242] = {.lex_state = 1}, - [243] = {.lex_state = 1}, + [243] = {.lex_state = 14}, [244] = {.lex_state = 1}, - [245] = {.lex_state = 5}, - [246] = {.lex_state = 7}, + [245] = {.lex_state = 7}, + [246] = {.lex_state = 1}, [247] = {.lex_state = 5}, - [248] = {.lex_state = 1}, + [248] = {.lex_state = 5}, [249] = {.lex_state = 1}, [250] = {.lex_state = 1}, [251] = {.lex_state = 1}, - [252] = {.lex_state = 5}, + [252] = {.lex_state = 7}, [253] = {.lex_state = 1}, [254] = {.lex_state = 1}, - [255] = {.lex_state = 7}, - [256] = {.lex_state = 7}, + [255] = {.lex_state = 5}, + [256] = {.lex_state = 1}, [257] = {.lex_state = 1}, [258] = {.lex_state = 1}, - [259] = {.lex_state = 47}, - [260] = {.lex_state = 1}, + [259] = {.lex_state = 1}, + [260] = {.lex_state = 7}, [261] = {.lex_state = 1}, [262] = {.lex_state = 1}, [263] = {.lex_state = 1}, - [264] = {.lex_state = 47}, - [265] = {.lex_state = 47}, + [264] = {.lex_state = 1}, + [265] = {.lex_state = 1}, [266] = {.lex_state = 1}, - [267] = {.lex_state = 1}, - [268] = {.lex_state = 1}, + [267] = {.lex_state = 47}, + [268] = {.lex_state = 6}, [269] = {.lex_state = 1}, [270] = {.lex_state = 1}, - [271] = {.lex_state = 6}, - [272] = {.lex_state = 7}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 47}, [273] = {.lex_state = 47}, - [274] = {.lex_state = 1}, - [275] = {.lex_state = 1}, - [276] = {.lex_state = 5}, - [277] = {.lex_state = 1}, - [278] = {.lex_state = 18}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 48}, - [281] = {.lex_state = 48}, - [282] = {.lex_state = 48}, - [283] = {.lex_state = 14}, + [274] = {.lex_state = 5}, + [275] = {.lex_state = 47}, + [276] = {.lex_state = 1}, + [277] = {.lex_state = 7}, + [278] = {.lex_state = 1}, + [279] = {.lex_state = 1}, + [280] = {.lex_state = 46}, + [281] = {.lex_state = 14}, + [282] = {.lex_state = 46}, + [283] = {.lex_state = 46}, [284] = {.lex_state = 14}, - [285] = {.lex_state = 14}, - [286] = {.lex_state = 46}, - [287] = {.lex_state = 46}, - [288] = {.lex_state = 46}, - [289] = {.lex_state = 18}, + [285] = {.lex_state = 48}, + [286] = {.lex_state = 14}, + [287] = {.lex_state = 18}, + [288] = {.lex_state = 14}, + [289] = {.lex_state = 14}, [290] = {.lex_state = 18}, [291] = {.lex_state = 14}, - [292] = {.lex_state = 47}, - [293] = {.lex_state = 47}, - [294] = {.lex_state = 14}, + [292] = {.lex_state = 48}, + [293] = {.lex_state = 18}, + [294] = {.lex_state = 48}, [295] = {.lex_state = 14}, [296] = {.lex_state = 14}, - [297] = {.lex_state = 14}, + [297] = {.lex_state = 47}, [298] = {.lex_state = 14}, - [299] = {.lex_state = 47}, - [300] = {.lex_state = 14}, - [301] = {.lex_state = 14}, + [299] = {.lex_state = 14}, + [300] = {.lex_state = 47}, + [301] = {.lex_state = 47}, [302] = {.lex_state = 47}, - [303] = {.lex_state = 46}, - [304] = {.lex_state = 46}, - [305] = {.lex_state = 46}, + [303] = {.lex_state = 14}, + [304] = {.lex_state = 14}, + [305] = {.lex_state = 14}, [306] = {.lex_state = 46}, - [307] = {.lex_state = 18}, - [308] = {.lex_state = 46}, - [309] = {.lex_state = 48}, + [307] = {.lex_state = 46}, + [308] = {.lex_state = 48}, + [309] = {.lex_state = 18}, [310] = {.lex_state = 46}, - [311] = {.lex_state = 14}, + [311] = {.lex_state = 46}, [312] = {.lex_state = 46}, [313] = {.lex_state = 46}, [314] = {.lex_state = 46}, @@ -4257,10 +4267,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 46}, [317] = {.lex_state = 46}, [318] = {.lex_state = 46}, - [319] = {.lex_state = 14}, + [319] = {.lex_state = 46}, [320] = {.lex_state = 46}, [321] = {.lex_state = 46}, - [322] = {.lex_state = 46}, + [322] = {.lex_state = 14}, [323] = {.lex_state = 46}, [324] = {.lex_state = 46}, [325] = {.lex_state = 46}, @@ -4273,26 +4283,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [332] = {.lex_state = 46}, [333] = {.lex_state = 46}, [334] = {.lex_state = 46}, - [335] = {.lex_state = 46}, + [335] = {.lex_state = 14}, [336] = {.lex_state = 46}, [337] = {.lex_state = 46}, [338] = {.lex_state = 46}, - [339] = {.lex_state = 14}, + [339] = {.lex_state = 46}, [340] = {.lex_state = 46}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 3}, + [341] = {.lex_state = 46}, + [342] = {.lex_state = 46}, + [343] = {.lex_state = 14}, [344] = {.lex_state = 14}, - [345] = {.lex_state = 3}, - [346] = {.lex_state = 14}, - [347] = {.lex_state = 46}, + [345] = {.lex_state = 14}, + [346] = {.lex_state = 3}, + [347] = {.lex_state = 14}, [348] = {.lex_state = 14}, [349] = {.lex_state = 14}, - [350] = {.lex_state = 14}, - [351] = {.lex_state = 14}, - [352] = {.lex_state = 3}, - [353] = {.lex_state = 3}, - [354] = {.lex_state = 3}, + [350] = {.lex_state = 46}, + [351] = {.lex_state = 3}, + [352] = {.lex_state = 14}, + [353] = {.lex_state = 14}, + [354] = {.lex_state = 14}, [355] = {.lex_state = 3}, [356] = {.lex_state = 3}, [357] = {.lex_state = 3}, @@ -4300,422 +4310,422 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [359] = {.lex_state = 10}, [360] = {.lex_state = 3}, [361] = {.lex_state = 3}, - [362] = {.lex_state = 10}, + [362] = {.lex_state = 3}, [363] = {.lex_state = 3}, - [364] = {.lex_state = 15}, - [365] = {.lex_state = 3}, + [364] = {.lex_state = 3}, + [365] = {.lex_state = 15}, [366] = {.lex_state = 3}, [367] = {.lex_state = 10}, [368] = {.lex_state = 3}, [369] = {.lex_state = 3}, [370] = {.lex_state = 3}, - [371] = {.lex_state = 3}, - [372] = {.lex_state = 3}, + [371] = {.lex_state = 10}, + [372] = {.lex_state = 15}, [373] = {.lex_state = 3}, [374] = {.lex_state = 3}, [375] = {.lex_state = 3}, [376] = {.lex_state = 3}, [377] = {.lex_state = 3}, [378] = {.lex_state = 3}, - [379] = {.lex_state = 15}, - [380] = {.lex_state = 11}, - [381] = {.lex_state = 11}, - [382] = {.lex_state = 17}, - [383] = {.lex_state = 15}, - [384] = {.lex_state = 17}, + [379] = {.lex_state = 3}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 3}, + [383] = {.lex_state = 17}, + [384] = {.lex_state = 15}, [385] = {.lex_state = 11}, - [386] = {.lex_state = 17}, - [387] = {.lex_state = 3}, - [388] = {.lex_state = 10}, - [389] = {.lex_state = 14}, - [390] = {.lex_state = 3}, - [391] = {.lex_state = 11}, + [386] = {.lex_state = 11}, + [387] = {.lex_state = 17}, + [388] = {.lex_state = 11}, + [389] = {.lex_state = 17}, + [390] = {.lex_state = 14}, + [391] = {.lex_state = 10}, [392] = {.lex_state = 3}, - [393] = {.lex_state = 3}, - [394] = {.lex_state = 3}, - [395] = {.lex_state = 3}, - [396] = {.lex_state = 3}, + [393] = {.lex_state = 15}, + [394] = {.lex_state = 15}, + [395] = {.lex_state = 15}, + [396] = {.lex_state = 12}, [397] = {.lex_state = 3}, [398] = {.lex_state = 3}, - [399] = {.lex_state = 15}, - [400] = {.lex_state = 3}, - [401] = {.lex_state = 12}, - [402] = {.lex_state = 15}, + [399] = {.lex_state = 3}, + [400] = {.lex_state = 15}, + [401] = {.lex_state = 3}, + [402] = {.lex_state = 14}, [403] = {.lex_state = 17}, - [404] = {.lex_state = 15}, - [405] = {.lex_state = 15}, + [404] = {.lex_state = 3}, + [405] = {.lex_state = 3}, [406] = {.lex_state = 12}, [407] = {.lex_state = 15}, [408] = {.lex_state = 12}, - [409] = {.lex_state = 2}, - [410] = {.lex_state = 4}, - [411] = {.lex_state = 4}, - [412] = {.lex_state = 14}, - [413] = {.lex_state = 14}, + [409] = {.lex_state = 11}, + [410] = {.lex_state = 3}, + [411] = {.lex_state = 3}, + [412] = {.lex_state = 3}, + [413] = {.lex_state = 3}, [414] = {.lex_state = 4}, - [415] = {.lex_state = 14}, - [416] = {.lex_state = 14}, - [417] = {.lex_state = 2}, - [418] = {.lex_state = 3}, - [419] = {.lex_state = 9}, - [420] = {.lex_state = 9}, - [421] = {.lex_state = 14}, - [422] = {.lex_state = 14}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 4}, + [417] = {.lex_state = 9}, + [418] = {.lex_state = 2}, + [419] = {.lex_state = 2}, + [420] = {.lex_state = 4}, + [421] = {.lex_state = 4}, + [422] = {.lex_state = 9}, [423] = {.lex_state = 14}, [424] = {.lex_state = 14}, - [425] = {.lex_state = 4}, - [426] = {.lex_state = 9}, - [427] = {.lex_state = 3}, - [428] = {.lex_state = 3}, - [429] = {.lex_state = 13}, - [430] = {.lex_state = 2}, - [431] = {.lex_state = 3}, - [432] = {.lex_state = 4}, - [433] = {.lex_state = 2}, - [434] = {.lex_state = 13}, - [435] = {.lex_state = 13}, - [436] = {.lex_state = 3}, + [425] = {.lex_state = 3}, + [426] = {.lex_state = 3}, + [427] = {.lex_state = 13}, + [428] = {.lex_state = 13}, + [429] = {.lex_state = 14}, + [430] = {.lex_state = 14}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 2}, + [433] = {.lex_state = 9}, + [434] = {.lex_state = 14}, + [435] = {.lex_state = 14}, + [436] = {.lex_state = 4}, [437] = {.lex_state = 3}, [438] = {.lex_state = 14}, [439] = {.lex_state = 4}, - [440] = {.lex_state = 4}, - [441] = {.lex_state = 14}, + [440] = {.lex_state = 3}, + [441] = {.lex_state = 4}, [442] = {.lex_state = 4}, - [443] = {.lex_state = 14}, + [443] = {.lex_state = 3}, [444] = {.lex_state = 14}, - [445] = {.lex_state = 4}, - [446] = {.lex_state = 3}, - [447] = {.lex_state = 3}, + [445] = {.lex_state = 14}, + [446] = {.lex_state = 14}, + [447] = {.lex_state = 14}, [448] = {.lex_state = 14}, - [449] = {.lex_state = 4}, - [450] = {.lex_state = 2}, - [451] = {.lex_state = 3}, - [452] = {.lex_state = 4}, + [449] = {.lex_state = 3}, + [450] = {.lex_state = 3}, + [451] = {.lex_state = 13}, + [452] = {.lex_state = 3}, [453] = {.lex_state = 4}, - [454] = {.lex_state = 3}, - [455] = {.lex_state = 4}, + [454] = {.lex_state = 2}, + [455] = {.lex_state = 2}, [456] = {.lex_state = 4}, - [457] = {.lex_state = 4}, - [458] = {.lex_state = 14}, - [459] = {.lex_state = 14}, - [460] = {.lex_state = 3}, - [461] = {.lex_state = 12}, - [462] = {.lex_state = 2}, - [463] = {.lex_state = 14}, + [457] = {.lex_state = 14}, + [458] = {.lex_state = 4}, + [459] = {.lex_state = 4}, + [460] = {.lex_state = 2}, + [461] = {.lex_state = 4}, + [462] = {.lex_state = 3}, + [463] = {.lex_state = 3}, [464] = {.lex_state = 3}, - [465] = {.lex_state = 14}, - [466] = {.lex_state = 14}, - [467] = {.lex_state = 2}, - [468] = {.lex_state = 2}, + [465] = {.lex_state = 4}, + [466] = {.lex_state = 12}, + [467] = {.lex_state = 4}, + [468] = {.lex_state = 14}, [469] = {.lex_state = 4}, - [470] = {.lex_state = 2}, - [471] = {.lex_state = 2}, + [470] = {.lex_state = 4}, + [471] = {.lex_state = 4}, [472] = {.lex_state = 2}, - [473] = {.lex_state = 2}, - [474] = {.lex_state = 2}, + [473] = {.lex_state = 4}, + [474] = {.lex_state = 4}, [475] = {.lex_state = 14}, - [476] = {.lex_state = 14}, - [477] = {.lex_state = 2}, - [478] = {.lex_state = 4}, + [476] = {.lex_state = 4}, + [477] = {.lex_state = 4}, + [478] = {.lex_state = 14}, [479] = {.lex_state = 4}, [480] = {.lex_state = 14}, - [481] = {.lex_state = 4}, - [482] = {.lex_state = 3}, - [483] = {.lex_state = 3}, - [484] = {.lex_state = 3}, + [481] = {.lex_state = 2}, + [482] = {.lex_state = 4}, + [483] = {.lex_state = 4}, + [484] = {.lex_state = 4}, [485] = {.lex_state = 4}, - [486] = {.lex_state = 14}, - [487] = {.lex_state = 2}, - [488] = {.lex_state = 14}, - [489] = {.lex_state = 3}, - [490] = {.lex_state = 4}, + [486] = {.lex_state = 4}, + [487] = {.lex_state = 3}, + [488] = {.lex_state = 3}, + [489] = {.lex_state = 4}, + [490] = {.lex_state = 14}, [491] = {.lex_state = 14}, - [492] = {.lex_state = 4}, + [492] = {.lex_state = 2}, [493] = {.lex_state = 3}, - [494] = {.lex_state = 3}, + [494] = {.lex_state = 4}, [495] = {.lex_state = 14}, [496] = {.lex_state = 14}, - [497] = {.lex_state = 4}, - [498] = {.lex_state = 2}, - [499] = {.lex_state = 2}, - [500] = {.lex_state = 4}, - [501] = {.lex_state = 2}, - [502] = {.lex_state = 4}, + [497] = {.lex_state = 3}, + [498] = {.lex_state = 3}, + [499] = {.lex_state = 3}, + [500] = {.lex_state = 14}, + [501] = {.lex_state = 14}, + [502] = {.lex_state = 2}, [503] = {.lex_state = 14}, - [504] = {.lex_state = 14}, + [504] = {.lex_state = 4}, [505] = {.lex_state = 14}, - [506] = {.lex_state = 14}, - [507] = {.lex_state = 14}, - [508] = {.lex_state = 14}, - [509] = {.lex_state = 4}, - [510] = {.lex_state = 2}, - [511] = {.lex_state = 14}, - [512] = {.lex_state = 14}, + [506] = {.lex_state = 4}, + [507] = {.lex_state = 2}, + [508] = {.lex_state = 3}, + [509] = {.lex_state = 14}, + [510] = {.lex_state = 14}, + [511] = {.lex_state = 2}, + [512] = {.lex_state = 2}, [513] = {.lex_state = 14}, - [514] = {.lex_state = 4}, + [514] = {.lex_state = 14}, [515] = {.lex_state = 14}, - [516] = {.lex_state = 4}, - [517] = {.lex_state = 4}, + [516] = {.lex_state = 2}, + [517] = {.lex_state = 14}, [518] = {.lex_state = 14}, - [519] = {.lex_state = 14}, + [519] = {.lex_state = 4}, [520] = {.lex_state = 2}, - [521] = {.lex_state = 4}, + [521] = {.lex_state = 2}, [522] = {.lex_state = 2}, - [523] = {.lex_state = 4}, + [523] = {.lex_state = 14}, [524] = {.lex_state = 14}, [525] = {.lex_state = 14}, [526] = {.lex_state = 2}, - [527] = {.lex_state = 2}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 3}, - [530] = {.lex_state = 14}, - [531] = {.lex_state = 14}, + [527] = {.lex_state = 14}, + [528] = {.lex_state = 2}, + [529] = {.lex_state = 14}, + [530] = {.lex_state = 2}, + [531] = {.lex_state = 2}, [532] = {.lex_state = 2}, - [533] = {.lex_state = 14}, + [533] = {.lex_state = 2}, [534] = {.lex_state = 2}, - [535] = {.lex_state = 4}, - [536] = {.lex_state = 4}, + [535] = {.lex_state = 2}, + [536] = {.lex_state = 14}, [537] = {.lex_state = 14}, - [538] = {.lex_state = 2}, - [539] = {.lex_state = 4}, - [540] = {.lex_state = 14}, + [538] = {.lex_state = 14}, + [539] = {.lex_state = 14}, + [540] = {.lex_state = 3}, [541] = {.lex_state = 14}, [542] = {.lex_state = 14}, [543] = {.lex_state = 2}, - [544] = {.lex_state = 14}, + [544] = {.lex_state = 13}, [545] = {.lex_state = 14}, - [546] = {.lex_state = 13}, - [547] = {.lex_state = 4}, + [546] = {.lex_state = 2}, + [547] = {.lex_state = 14}, [548] = {.lex_state = 14}, [549] = {.lex_state = 14}, - [550] = {.lex_state = 14}, + [550] = {.lex_state = 2}, [551] = {.lex_state = 14}, [552] = {.lex_state = 14}, - [553] = {.lex_state = 2}, + [553] = {.lex_state = 4}, [554] = {.lex_state = 14}, - [555] = {.lex_state = 2}, + [555] = {.lex_state = 14}, [556] = {.lex_state = 14}, [557] = {.lex_state = 14}, [558] = {.lex_state = 14}, [559] = {.lex_state = 14}, - [560] = {.lex_state = 14}, + [560] = {.lex_state = 2}, [561] = {.lex_state = 14}, [562] = {.lex_state = 14}, [563] = {.lex_state = 14}, [564] = {.lex_state = 14}, - [565] = {.lex_state = 4}, - [566] = {.lex_state = 2}, + [565] = {.lex_state = 14}, + [566] = {.lex_state = 14}, [567] = {.lex_state = 14}, - [568] = {.lex_state = 14}, - [569] = {.lex_state = 2}, + [568] = {.lex_state = 4}, + [569] = {.lex_state = 14}, [570] = {.lex_state = 14}, - [571] = {.lex_state = 9}, + [571] = {.lex_state = 14}, [572] = {.lex_state = 14}, - [573] = {.lex_state = 14}, - [574] = {.lex_state = 2}, + [573] = {.lex_state = 4}, + [574] = {.lex_state = 14}, [575] = {.lex_state = 2}, - [576] = {.lex_state = 2}, - [577] = {.lex_state = 14}, + [576] = {.lex_state = 9}, + [577] = {.lex_state = 4}, [578] = {.lex_state = 2}, - [579] = {.lex_state = 14}, - [580] = {.lex_state = 4}, - [581] = {.lex_state = 2}, + [579] = {.lex_state = 2}, + [580] = {.lex_state = 14}, + [581] = {.lex_state = 14}, [582] = {.lex_state = 14}, - [583] = {.lex_state = 2}, + [583] = {.lex_state = 4}, [584] = {.lex_state = 2}, - [585] = {.lex_state = 2}, - [586] = {.lex_state = 14}, + [585] = {.lex_state = 4}, + [586] = {.lex_state = 2}, [587] = {.lex_state = 14}, - [588] = {.lex_state = 4}, + [588] = {.lex_state = 14}, [589] = {.lex_state = 2}, - [590] = {.lex_state = 14}, - [591] = {.lex_state = 14}, - [592] = {.lex_state = 14}, - [593] = {.lex_state = 2}, + [590] = {.lex_state = 2}, + [591] = {.lex_state = 2}, + [592] = {.lex_state = 2}, + [593] = {.lex_state = 14}, [594] = {.lex_state = 14}, [595] = {.lex_state = 2}, [596] = {.lex_state = 2}, [597] = {.lex_state = 2}, - [598] = {.lex_state = 14}, - [599] = {.lex_state = 4}, + [598] = {.lex_state = 2}, + [599] = {.lex_state = 14}, [600] = {.lex_state = 2}, - [601] = {.lex_state = 2}, - [602] = {.lex_state = 4}, - [603] = {.lex_state = 4}, - [604] = {.lex_state = 14}, - [605] = {.lex_state = 14}, + [601] = {.lex_state = 14}, + [602] = {.lex_state = 14}, + [603] = {.lex_state = 14}, + [604] = {.lex_state = 4}, + [605] = {.lex_state = 4}, [606] = {.lex_state = 2}, - [607] = {.lex_state = 2}, - [608] = {.lex_state = 2}, - [609] = {.lex_state = 2}, - [610] = {.lex_state = 4}, + [607] = {.lex_state = 4}, + [608] = {.lex_state = 4}, + [609] = {.lex_state = 14}, + [610] = {.lex_state = 2}, [611] = {.lex_state = 2}, - [612] = {.lex_state = 14}, - [613] = {.lex_state = 4}, - [614] = {.lex_state = 4}, - [615] = {.lex_state = 2}, + [612] = {.lex_state = 4}, + [613] = {.lex_state = 2}, + [614] = {.lex_state = 2}, + [615] = {.lex_state = 14}, [616] = {.lex_state = 2}, - [617] = {.lex_state = 2}, - [618] = {.lex_state = 14}, + [617] = {.lex_state = 14}, + [618] = {.lex_state = 2}, [619] = {.lex_state = 4}, - [620] = {.lex_state = 4}, + [620] = {.lex_state = 2}, [621] = {.lex_state = 14}, - [622] = {.lex_state = 14}, + [622] = {.lex_state = 4}, [623] = {.lex_state = 14}, [624] = {.lex_state = 4}, - [625] = {.lex_state = 2}, - [626] = {.lex_state = 14}, - [627] = {.lex_state = 4}, + [625] = {.lex_state = 14}, + [626] = {.lex_state = 4}, + [627] = {.lex_state = 14}, [628] = {.lex_state = 14}, - [629] = {.lex_state = 14}, - [630] = {.lex_state = 14}, - [631] = {.lex_state = 14}, - [632] = {.lex_state = 14}, + [629] = {.lex_state = 2}, + [630] = {.lex_state = 4}, + [631] = {.lex_state = 2}, + [632] = {.lex_state = 2}, [633] = {.lex_state = 14}, - [634] = {.lex_state = 14}, + [634] = {.lex_state = 2}, [635] = {.lex_state = 14}, - [636] = {.lex_state = 2}, + [636] = {.lex_state = 14}, [637] = {.lex_state = 14}, [638] = {.lex_state = 14}, - [639] = {.lex_state = 2}, + [639] = {.lex_state = 14}, [640] = {.lex_state = 14}, - [641] = {.lex_state = 2}, - [642] = {.lex_state = 2}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 14}, [643] = {.lex_state = 14}, [644] = {.lex_state = 14}, [645] = {.lex_state = 14}, - [646] = {.lex_state = 14}, + [646] = {.lex_state = 2}, [647] = {.lex_state = 14}, [648] = {.lex_state = 14}, [649] = {.lex_state = 14}, - [650] = {.lex_state = 14}, + [650] = {.lex_state = 2}, [651] = {.lex_state = 14}, [652] = {.lex_state = 14}, - [653] = {.lex_state = 2}, + [653] = {.lex_state = 14}, [654] = {.lex_state = 14}, - [655] = {.lex_state = 14}, + [655] = {.lex_state = 2}, [656] = {.lex_state = 14}, [657] = {.lex_state = 14}, [658] = {.lex_state = 14}, - [659] = {.lex_state = 14}, - [660] = {.lex_state = 14}, + [659] = {.lex_state = 2}, + [660] = {.lex_state = 2}, [661] = {.lex_state = 14}, - [662] = {.lex_state = 19}, - [663] = {.lex_state = 19}, - [664] = {.lex_state = 19}, - [665] = {.lex_state = 20}, - [666] = {.lex_state = 20}, - [667] = {.lex_state = 20}, - [668] = {.lex_state = 19}, - [669] = {.lex_state = 0}, - [670] = {.lex_state = 21}, - [671] = {.lex_state = 21}, + [662] = {.lex_state = 14}, + [663] = {.lex_state = 14}, + [664] = {.lex_state = 14}, + [665] = {.lex_state = 14}, + [666] = {.lex_state = 14}, + [667] = {.lex_state = 14}, + [668] = {.lex_state = 14}, + [669] = {.lex_state = 19}, + [670] = {.lex_state = 19}, + [671] = {.lex_state = 19}, [672] = {.lex_state = 20}, - [673] = {.lex_state = 21}, - [674] = {.lex_state = 21}, - [675] = {.lex_state = 21}, - [676] = {.lex_state = 4}, - [677] = {.lex_state = 14}, - [678] = {.lex_state = 14}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 21}, - [682] = {.lex_state = 0}, - [683] = {.lex_state = 0}, - [684] = {.lex_state = 0}, - [685] = {.lex_state = 0}, + [673] = {.lex_state = 20}, + [674] = {.lex_state = 20}, + [675] = {.lex_state = 19}, + [676] = {.lex_state = 21}, + [677] = {.lex_state = 0}, + [678] = {.lex_state = 20}, + [679] = {.lex_state = 21}, + [680] = {.lex_state = 21}, + [681] = {.lex_state = 14}, + [682] = {.lex_state = 21}, + [683] = {.lex_state = 21}, + [684] = {.lex_state = 14}, + [685] = {.lex_state = 4}, [686] = {.lex_state = 0}, - [687] = {.lex_state = 14}, - [688] = {.lex_state = 14}, - [689] = {.lex_state = 14}, - [690] = {.lex_state = 14}, - [691] = {.lex_state = 14}, - [692] = {.lex_state = 14}, - [693] = {.lex_state = 14}, - [694] = {.lex_state = 4}, + [687] = {.lex_state = 0}, + [688] = {.lex_state = 0}, + [689] = {.lex_state = 0}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 0}, + [693] = {.lex_state = 21}, + [694] = {.lex_state = 14}, [695] = {.lex_state = 14}, [696] = {.lex_state = 14}, - [697] = {.lex_state = 14}, + [697] = {.lex_state = 4}, [698] = {.lex_state = 14}, [699] = {.lex_state = 14}, - [700] = {.lex_state = 4}, - [701] = {.lex_state = 14}, + [700] = {.lex_state = 14}, + [701] = {.lex_state = 4}, [702] = {.lex_state = 14}, [703] = {.lex_state = 14}, - [704] = {.lex_state = 4}, + [704] = {.lex_state = 14}, [705] = {.lex_state = 14}, [706] = {.lex_state = 14}, [707] = {.lex_state = 14}, [708] = {.lex_state = 14}, - [709] = {.lex_state = 4}, + [709] = {.lex_state = 14}, [710] = {.lex_state = 14}, [711] = {.lex_state = 14}, [712] = {.lex_state = 14}, - [713] = {.lex_state = 4}, + [713] = {.lex_state = 14}, [714] = {.lex_state = 14}, [715] = {.lex_state = 14}, [716] = {.lex_state = 14}, [717] = {.lex_state = 14}, - [718] = {.lex_state = 14}, - [719] = {.lex_state = 14}, + [718] = {.lex_state = 4}, + [719] = {.lex_state = 4}, [720] = {.lex_state = 14}, [721] = {.lex_state = 4}, [722] = {.lex_state = 14}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 14}, - [725] = {.lex_state = 4}, + [723] = {.lex_state = 14}, + [724] = {.lex_state = 0}, + [725] = {.lex_state = 14}, [726] = {.lex_state = 14}, - [727] = {.lex_state = 14}, + [727] = {.lex_state = 4}, [728] = {.lex_state = 14}, - [729] = {.lex_state = 4}, - [730] = {.lex_state = 4}, + [729] = {.lex_state = 14}, + [730] = {.lex_state = 14}, [731] = {.lex_state = 14}, - [732] = {.lex_state = 4}, - [733] = {.lex_state = 0}, + [732] = {.lex_state = 14}, + [733] = {.lex_state = 14}, [734] = {.lex_state = 14}, [735] = {.lex_state = 14}, [736] = {.lex_state = 4}, - [737] = {.lex_state = 14}, + [737] = {.lex_state = 4}, [738] = {.lex_state = 14}, [739] = {.lex_state = 4}, - [740] = {.lex_state = 14}, + [740] = {.lex_state = 4}, [741] = {.lex_state = 4}, - [742] = {.lex_state = 14}, - [743] = {.lex_state = 4}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 14}, [744] = {.lex_state = 14}, [745] = {.lex_state = 14}, [746] = {.lex_state = 14}, - [747] = {.lex_state = 14}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 14}, + [747] = {.lex_state = 4}, + [748] = {.lex_state = 14}, + [749] = {.lex_state = 4}, + [750] = {.lex_state = 46}, [751] = {.lex_state = 14}, - [752] = {.lex_state = 0}, + [752] = {.lex_state = 14}, [753] = {.lex_state = 0}, [754] = {.lex_state = 0}, [755] = {.lex_state = 14}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 0}, + [756] = {.lex_state = 4}, + [757] = {.lex_state = 14}, [758] = {.lex_state = 14}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 14}, + [759] = {.lex_state = 14}, + [760] = {.lex_state = 0}, [761] = {.lex_state = 0}, - [762] = {.lex_state = 14}, + [762] = {.lex_state = 0}, [763] = {.lex_state = 14}, - [764] = {.lex_state = 0}, + [764] = {.lex_state = 14}, [765] = {.lex_state = 14}, - [766] = {.lex_state = 14}, + [766] = {.lex_state = 0}, [767] = {.lex_state = 14}, - [768] = {.lex_state = 14}, + [768] = {.lex_state = 46}, [769] = {.lex_state = 0}, [770] = {.lex_state = 14}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 0}, + [771] = {.lex_state = 14}, + [772] = {.lex_state = 14}, [773] = {.lex_state = 0}, [774] = {.lex_state = 14}, [775] = {.lex_state = 0}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, + [776] = {.lex_state = 14}, + [777] = {.lex_state = 14}, [778] = {.lex_state = 14}, [779] = {.lex_state = 14}, [780] = {.lex_state = 0}, @@ -4723,74 +4733,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [782] = {.lex_state = 0}, [783] = {.lex_state = 0}, [784] = {.lex_state = 14}, - [785] = {.lex_state = 14}, + [785] = {.lex_state = 46}, [786] = {.lex_state = 0}, [787] = {.lex_state = 14}, [788] = {.lex_state = 0}, [789] = {.lex_state = 0}, - [790] = {.lex_state = 46}, + [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, - [792] = {.lex_state = 14}, + [792] = {.lex_state = 0}, [793] = {.lex_state = 0}, [794] = {.lex_state = 0}, [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, - [797] = {.lex_state = 46}, - [798] = {.lex_state = 22}, - [799] = {.lex_state = 46}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 22}, + [797] = {.lex_state = 14}, + [798] = {.lex_state = 14}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 46}, + [801] = {.lex_state = 0}, [802] = {.lex_state = 22}, [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, + [804] = {.lex_state = 46}, [805] = {.lex_state = 0}, - [806] = {.lex_state = 22}, - [807] = {.lex_state = 46}, - [808] = {.lex_state = 22}, - [809] = {.lex_state = 22}, - [810] = {.lex_state = 22}, - [811] = {.lex_state = 22}, - [812] = {.lex_state = 22}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 0}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 0}, + [811] = {.lex_state = 0}, + [812] = {.lex_state = 0}, [813] = {.lex_state = 0}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 46}, - [816] = {.lex_state = 22}, + [814] = {.lex_state = 46}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0}, [817] = {.lex_state = 22}, [818] = {.lex_state = 22}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, + [819] = {.lex_state = 22}, + [820] = {.lex_state = 22}, [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, + [822] = {.lex_state = 22}, [823] = {.lex_state = 0}, [824] = {.lex_state = 0}, - [825] = {.lex_state = 14}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 0}, + [825] = {.lex_state = 22}, + [826] = {.lex_state = 22}, + [827] = {.lex_state = 46}, [828] = {.lex_state = 0}, - [829] = {.lex_state = 0}, + [829] = {.lex_state = 14}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 14}, + [831] = {.lex_state = 22}, [832] = {.lex_state = 0}, [833] = {.lex_state = 0}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 46}, - [836] = {.lex_state = 22}, - [837] = {.lex_state = 14}, + [834] = {.lex_state = 14}, + [835] = {.lex_state = 22}, + [836] = {.lex_state = 46}, + [837] = {.lex_state = 22}, [838] = {.lex_state = 0}, [839] = {.lex_state = 0}, - [840] = {.lex_state = 0}, + [840] = {.lex_state = 14}, [841] = {.lex_state = 0}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 46}, - [846] = {.lex_state = 22}, - [847] = {.lex_state = 46}, - [848] = {.lex_state = 22}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 46}, + [844] = {.lex_state = 22}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 22}, + [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 0}, + [850] = {.lex_state = 14}, + [851] = {.lex_state = 0}, + [852] = {.lex_state = 14}, + [853] = {.lex_state = 22}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 46}, + [856] = {.lex_state = 14}, + [857] = {.lex_state = 14}, + [858] = {.lex_state = 46}, + [859] = {.lex_state = 14}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 22}, + [862] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4863,41 +4883,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(841), + [sym_root] = STATE(849), [sym_statement] = STATE(34), - [sym_statement_kind] = STATE(317), - [sym_expression] = STATE(113), - [sym__expression_kind] = STATE(135), - [sym_as] = STATE(135), - [sym_pipe] = STATE(320), - [sym_command] = STATE(130), - [sym_block] = STATE(320), - [sym_value] = STATE(119), - [sym_float] = STATE(89), - [sym_string] = STATE(89), - [sym_boolean] = STATE(89), - [sym_list] = STATE(89), - [sym_map] = STATE(89), + [sym_statement_kind] = STATE(333), + [sym_expression] = STATE(115), + [sym__expression_kind] = STATE(138), + [sym_as] = STATE(138), + [sym_pipe] = STATE(331), + [sym_command] = STATE(135), + [sym_block] = STATE(331), + [sym_value] = STATE(114), + [sym_float] = STATE(85), + [sym_string] = STATE(85), + [sym_boolean] = STATE(85), + [sym_list] = STATE(85), + [sym_map] = STATE(85), [sym_index] = STATE(97), - [sym_index_expression] = STATE(840), - [sym_math] = STATE(135), - [sym_logic] = STATE(135), - [sym_assignment] = STATE(320), - [sym_index_assignment] = STATE(320), - [sym_if_else] = STATE(320), - [sym_if] = STATE(265), - [sym_match] = STATE(320), - [sym_while] = STATE(320), - [sym_for] = STATE(320), - [sym_function] = STATE(89), - [sym_function_expression] = STATE(839), - [sym__function_expression_kind] = STATE(833), - [sym_function_call] = STATE(126), - [sym_type_definition] = STATE(320), - [sym_enum_definition] = STATE(322), - [sym_enum_instance] = STATE(89), - [sym_struct_definition] = STATE(322), - [sym_struct_instance] = STATE(89), + [sym_index_expression] = STATE(848), + [sym_math] = STATE(138), + [sym_logic] = STATE(138), + [sym_assignment] = STATE(331), + [sym_index_assignment] = STATE(331), + [sym_if_else] = STATE(331), + [sym_if] = STATE(267), + [sym_match] = STATE(331), + [sym_while] = STATE(331), + [sym_for] = STATE(331), + [sym_function] = STATE(85), + [sym_function_expression] = STATE(812), + [sym__function_expression_kind] = STATE(811), + [sym_function_call] = STATE(139), + [sym_type_definition] = STATE(331), + [sym_enum_definition] = STATE(319), + [sym_enum_instance] = STATE(85), + [sym_struct_definition] = STATE(319), + [sym_struct_instance] = STATE(85), [aux_sym_root_repeat1] = STATE(34), [sym_identifier] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -4966,27 +4986,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(49), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(687), 1, + STATE(731), 1, aux_sym_map_repeat1, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -4994,13 +5014,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(7), 2, + STATE(38), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5011,7 +5031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5020,7 +5040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5067,27 +5087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(51), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(689), 1, + STATE(734), 1, aux_sym_map_repeat1, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5095,13 +5115,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(22), 2, + STATE(27), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5112,7 +5132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5121,7 +5141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5168,27 +5188,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(53), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(744), 1, + STATE(704), 1, aux_sym_map_repeat1, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5196,13 +5216,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(22), 2, + STATE(27), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5213,7 +5233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5222,7 +5242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5269,25 +5289,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(57), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5295,13 +5315,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5312,7 +5332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5321,7 +5341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5368,25 +5388,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(59), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5394,13 +5414,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(40), 2, + STATE(17), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5411,7 +5431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5420,7 +5440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5467,25 +5487,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(61), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5493,13 +5513,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(11), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5510,7 +5530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5519,7 +5539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5566,25 +5586,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(63), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5592,13 +5612,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(26), 2, + STATE(36), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5609,7 +5629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5618,7 +5638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5631,84 +5651,84 @@ static const uint16_t ts_small_parse_table[] = { [954] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, - anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_if, - ACTIONS(31), 1, - anon_sym_match, - ACTIONS(33), 1, - anon_sym_while, - ACTIONS(35), 1, - anon_sym_for, - ACTIONS(37), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, - sym_identifier, ACTIONS(65), 1, - anon_sym_RBRACE, - STATE(101), 1, + ts_builtin_sym_end, + ACTIONS(67), 1, + sym_identifier, + ACTIONS(73), 1, + anon_sym_LPAREN, + ACTIONS(76), 1, + anon_sym_CARET, + ACTIONS(79), 1, + aux_sym_command_argument_token2, + ACTIONS(82), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(88), 1, + sym_range, + ACTIONS(91), 1, + sym_integer, + ACTIONS(100), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(106), 1, + anon_sym_match, + ACTIONS(109), 1, + anon_sym_while, + ACTIONS(112), 1, + anon_sym_for, + ACTIONS(115), 1, + anon_sym_asyncfor, + ACTIONS(118), 1, + anon_sym_enum, + ACTIONS(121), 1, + anon_sym_struct, + STATE(97), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(115), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(135), 1, sym_command, - STATE(265), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(45), 2, + ACTIONS(70), 2, anon_sym_return, anon_sym_break, - STATE(17), 2, + ACTIONS(97), 2, + anon_sym_true, + anon_sym_false, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(94), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5717,7 +5737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5762,27 +5782,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(67), 1, + ACTIONS(124), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5790,13 +5810,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(24), 2, + STATE(12), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5807,7 +5827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5816,7 +5836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5861,27 +5881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(69), 1, + ACTIONS(124), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5889,13 +5909,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(7), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -5906,7 +5926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -5915,7 +5935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -5960,27 +5980,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(71), 1, + ACTIONS(126), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -5988,13 +6008,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6005,7 +6025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6014,7 +6034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6059,27 +6079,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(73), 1, + ACTIONS(128), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6087,13 +6107,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6104,7 +6124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6113,7 +6133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6158,27 +6178,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(75), 1, + ACTIONS(130), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6186,13 +6206,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(31), 2, + STATE(19), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6203,7 +6223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6212,7 +6232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6257,27 +6277,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(71), 1, + ACTIONS(63), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6285,13 +6305,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(36), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6302,7 +6322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6311,7 +6331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6356,27 +6376,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(77), 1, + ACTIONS(130), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6384,13 +6404,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(7), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6401,7 +6421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6410,7 +6430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6455,27 +6475,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(79), 1, + ACTIONS(132), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6483,13 +6503,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6500,7 +6520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6509,7 +6529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6554,27 +6574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(79), 1, + ACTIONS(134), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6582,13 +6602,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(13), 2, + STATE(15), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6599,7 +6619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6608,7 +6628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6653,27 +6673,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(136), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6681,13 +6701,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6698,7 +6718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6707,7 +6727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6752,27 +6772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(138), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6780,13 +6800,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(23), 2, + STATE(25), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6797,7 +6817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6806,7 +6826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6851,27 +6871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(85), 1, + ACTIONS(140), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6879,13 +6899,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(22), 2, + STATE(16), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6896,7 +6916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -6905,7 +6925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -6950,27 +6970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(83), 1, + ACTIONS(138), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -6978,13 +6998,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -6995,7 +7015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7004,7 +7024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7049,27 +7069,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(87), 1, + ACTIONS(142), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7077,13 +7097,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(31), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7094,7 +7114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7103,7 +7123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7148,27 +7168,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(89), 1, + ACTIONS(132), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7176,13 +7196,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(41), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7193,7 +7213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7202,7 +7222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7247,27 +7267,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(91), 1, + ACTIONS(144), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7275,13 +7295,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(29), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7292,7 +7312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7301,7 +7321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7346,27 +7366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(67), 1, + ACTIONS(146), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7374,13 +7394,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(29), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7391,7 +7411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7400,7 +7420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7413,84 +7433,84 @@ static const uint16_t ts_small_parse_table[] = { [3384] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(93), 1, - ts_builtin_sym_end, - ACTIONS(95), 1, - sym_identifier, - ACTIONS(101), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(104), 1, - anon_sym_CARET, - ACTIONS(107), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(110), 1, + ACTIONS(15), 1, anon_sym_async, - ACTIONS(113), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(116), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(119), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(128), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(29), 1, anon_sym_if, - ACTIONS(134), 1, + ACTIONS(31), 1, anon_sym_match, - ACTIONS(137), 1, + ACTIONS(33), 1, anon_sym_while, - ACTIONS(140), 1, + ACTIONS(35), 1, anon_sym_for, - ACTIONS(143), 1, + ACTIONS(37), 1, anon_sym_asyncfor, - ACTIONS(146), 1, + ACTIONS(39), 1, anon_sym_enum, - ACTIONS(149), 1, + ACTIONS(41), 1, anon_sym_struct, - STATE(97), 1, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(142), 1, + anon_sym_RBRACE, + STATE(102), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(126), 1, - sym_function_call, + STATE(123), 1, + sym_expression, STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, - ACTIONS(98), 2, - anon_sym_return, - anon_sym_break, - ACTIONS(125), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(27), 2, + ACTIONS(45), 2, + anon_sym_return, + anon_sym_break, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(122), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7499,7 +7519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7544,27 +7564,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(152), 1, + ACTIONS(148), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7575,10 +7595,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(32), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7589,7 +7609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7598,7 +7618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7643,27 +7663,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(152), 1, + ACTIONS(148), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7671,13 +7691,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7688,7 +7708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7697,7 +7717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7742,27 +7762,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(154), 1, + ACTIONS(150), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7770,13 +7790,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7787,7 +7807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7796,7 +7816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7841,27 +7861,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(156), 1, + ACTIONS(152), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7869,13 +7889,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7886,7 +7906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7895,7 +7915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -7940,27 +7960,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(158), 1, + ACTIONS(154), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -7968,13 +7988,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -7985,7 +8005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -7994,7 +8014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8039,27 +8059,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(160), 1, + ACTIONS(156), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8067,13 +8087,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(37), 2, + STATE(27), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8084,7 +8104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8093,7 +8113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8138,27 +8158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(41), 1, anon_sym_struct, - ACTIONS(162), 1, + ACTIONS(158), 1, ts_builtin_sym_end, STATE(97), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, + STATE(115), 1, + sym_expression, + STATE(135), 1, sym_command, - STATE(265), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(7), 2, anon_sym_return, @@ -8166,13 +8186,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(27), 2, + STATE(9), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8183,7 +8203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8192,7 +8212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8205,84 +8225,84 @@ static const uint16_t ts_small_parse_table[] = { [4464] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, - anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_if, - ACTIONS(31), 1, - anon_sym_match, - ACTIONS(33), 1, - anon_sym_while, - ACTIONS(35), 1, - anon_sym_for, - ACTIONS(37), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, - sym_identifier, - ACTIONS(69), 1, + ACTIONS(65), 1, anon_sym_RBRACE, - STATE(101), 1, + ACTIONS(73), 1, + anon_sym_LPAREN, + ACTIONS(79), 1, + aux_sym_command_argument_token2, + ACTIONS(82), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_LBRACE, + ACTIONS(88), 1, + sym_range, + ACTIONS(91), 1, + sym_integer, + ACTIONS(100), 1, + anon_sym_LBRACK, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(106), 1, + anon_sym_match, + ACTIONS(109), 1, + anon_sym_while, + ACTIONS(112), 1, + anon_sym_for, + ACTIONS(115), 1, + anon_sym_asyncfor, + ACTIONS(118), 1, + anon_sym_enum, + ACTIONS(121), 1, + anon_sym_struct, + ACTIONS(160), 1, + sym_identifier, + ACTIONS(166), 1, + anon_sym_CARET, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(97), 2, anon_sym_true, anon_sym_false, - ACTIONS(45), 2, + ACTIONS(163), 2, anon_sym_return, anon_sym_break, - STATE(12), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(94), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8291,7 +8311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8336,27 +8356,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(164), 1, + ACTIONS(169), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8364,13 +8384,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8381,7 +8401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8390,7 +8410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8435,27 +8455,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8463,13 +8483,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(30), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8480,7 +8500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8489,7 +8509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8534,27 +8554,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(156), 1, + ACTIONS(171), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8562,13 +8582,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(30), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8579,7 +8599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8588,7 +8608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8633,27 +8653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(166), 1, + ACTIONS(173), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8661,13 +8681,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(22), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8678,7 +8698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8687,7 +8707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8732,27 +8752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(168), 1, + ACTIONS(175), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8760,13 +8780,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(5), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8777,7 +8797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8786,7 +8806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8831,27 +8851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(170), 1, + ACTIONS(177), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8859,13 +8879,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(5), 2, + STATE(35), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8876,7 +8896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8885,7 +8905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -8930,27 +8950,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(61), 1, + ACTIONS(179), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -8958,13 +8978,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(19), 2, + STATE(38), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -8975,7 +8995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -8984,7 +9004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -9029,27 +9049,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - ACTIONS(57), 1, + ACTIONS(134), 1, anon_sym_RBRACE, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, @@ -9057,13 +9077,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(39), 2, + STATE(38), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -9074,7 +9094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -9083,7 +9103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -9096,84 +9116,84 @@ static const uint16_t ts_small_parse_table[] = { [5679] = 36, ACTIONS(3), 1, sym__comment, - ACTIONS(93), 1, - anon_sym_RBRACE, - ACTIONS(101), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(107), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(110), 1, + ACTIONS(15), 1, anon_sym_async, - ACTIONS(113), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(116), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(119), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(128), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(131), 1, + ACTIONS(29), 1, anon_sym_if, - ACTIONS(134), 1, + ACTIONS(31), 1, anon_sym_match, - ACTIONS(137), 1, + ACTIONS(33), 1, anon_sym_while, - ACTIONS(140), 1, + ACTIONS(35), 1, anon_sym_for, - ACTIONS(143), 1, + ACTIONS(37), 1, anon_sym_asyncfor, - ACTIONS(146), 1, + ACTIONS(39), 1, anon_sym_enum, - ACTIONS(149), 1, + ACTIONS(41), 1, anon_sym_struct, - ACTIONS(172), 1, - sym_identifier, - ACTIONS(178), 1, + ACTIONS(47), 1, anon_sym_CARET, - STATE(101), 1, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(171), 1, + anon_sym_RBRACE, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(317), 1, + STATE(333), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, - ACTIONS(125), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(175), 2, + ACTIONS(45), 2, anon_sym_return, anon_sym_break, - STATE(44), 2, + STATE(13), 2, sym_statement, aux_sym_root_repeat1, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(122), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -9182,7 +9202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -9195,81 +9215,81 @@ static const uint16_t ts_small_parse_table[] = { [5814] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(187), 1, - anon_sym_CARET, - ACTIONS(189), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(191), 1, + ACTIONS(15), 1, anon_sym_async, - ACTIONS(193), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(195), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(205), 1, + ACTIONS(29), 1, anon_sym_if, - ACTIONS(207), 1, + ACTIONS(31), 1, anon_sym_match, - ACTIONS(209), 1, + ACTIONS(33), 1, anon_sym_while, - ACTIONS(211), 1, + ACTIONS(35), 1, anon_sym_for, - ACTIONS(213), 1, + ACTIONS(37), 1, anon_sym_asyncfor, - ACTIONS(215), 1, + ACTIONS(39), 1, anon_sym_enum, - ACTIONS(217), 1, + ACTIONS(41), 1, anon_sym_struct, - STATE(195), 1, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(55), 1, + sym_identifier, + STATE(102), 1, sym_index, - STATE(227), 1, + STATE(114), 1, sym_value, - STATE(269), 1, + STATE(123), 1, sym_expression, - STATE(275), 1, + STATE(130), 1, sym_command, - STATE(277), 1, + STATE(131), 1, sym_function_call, - STATE(379), 1, + STATE(267), 1, sym_if, - STATE(486), 1, + STATE(315), 1, sym_statement, - STATE(495), 1, + STATE(326), 1, sym_statement_kind, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(183), 2, - anon_sym_return, - anon_sym_break, - ACTIONS(201), 2, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + ACTIONS(181), 2, + anon_sym_return, + anon_sym_break, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -9278,7 +9298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -9291,81 +9311,81 @@ static const uint16_t ts_small_parse_table[] = { [5945] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(225), 1, + ACTIONS(189), 1, anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + STATE(357), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(410), 1, sym_value, - STATE(400), 1, + STATE(413), 1, sym_expression, - STATE(436), 1, - sym_command, - STATE(486), 1, - sym_statement, - STATE(495), 1, + STATE(426), 1, + sym_function_call, + STATE(480), 1, sym_statement_kind, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(513), 1, + sym_statement, + STATE(540), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(221), 2, + ACTIONS(185), 2, anon_sym_return, anon_sym_break, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -9374,7 +9394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9387,81 +9407,81 @@ static const uint16_t ts_small_parse_table[] = { [6076] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, anon_sym_struct, - ACTIONS(223), 1, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(225), 1, anon_sym_LPAREN, ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - sym_identifier, - ACTIONS(245), 1, anon_sym_CARET, - STATE(377), 1, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(231), 1, + anon_sym_LBRACE, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + STATE(196), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(397), 1, + STATE(210), 1, sym_value, - STATE(418), 1, + STATE(265), 1, sym_expression, - STATE(431), 1, + STATE(276), 1, sym_function_call, - STATE(491), 1, - sym_statement_kind, - STATE(529), 1, + STATE(279), 1, sym_command, - STATE(784), 1, + STATE(372), 1, + sym_if, + STATE(480), 1, + sym_statement_kind, + STATE(513), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, + STATE(801), 1, sym_index_expression, - ACTIONS(237), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(243), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(223), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -9470,7 +9490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9483,81 +9503,81 @@ static const uint16_t ts_small_parse_table[] = { [6207] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, - sym_identifier, - ACTIONS(223), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(55), 1, + sym_identifier, + STATE(102), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(400), 1, + STATE(123), 1, sym_expression, - STATE(436), 1, + STATE(130), 1, sym_command, - STATE(491), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(326), 1, sym_statement_kind, - STATE(737), 1, + STATE(330), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(181), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -9566,7 +9586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -9579,81 +9599,81 @@ static const uint16_t ts_small_parse_table[] = { [6338] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(13), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(21), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(27), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, + ACTIONS(243), 1, sym_identifier, - STATE(101), 1, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(119), 1, - sym_value, - STATE(120), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, - sym_command, - STATE(265), 1, + STATE(372), 1, sym_if, - STATE(312), 1, - sym_statement, - STATE(337), 1, + STATE(397), 1, + sym_function_call, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, + sym_command, + STATE(491), 1, sym_statement_kind, - STATE(833), 1, + STATE(748), 1, + sym_statement, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(824), 1, sym_function_expression, - STATE(840), 1, + STATE(838), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(249), 2, + ACTIONS(245), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -9662,7 +9682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9675,81 +9695,81 @@ static const uint16_t ts_small_parse_table[] = { [6469] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(185), 1, - anon_sym_LPAREN, ACTIONS(187), 1, - anon_sym_CARET, + anon_sym_LPAREN, ACTIONS(189), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(191), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(193), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(195), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, ACTIONS(205), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, anon_sym_struct, - STATE(195), 1, + STATE(357), 1, sym_index, - STATE(227), 1, - sym_value, - STATE(269), 1, - sym_expression, - STATE(275), 1, - sym_command, - STATE(277), 1, - sym_function_call, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(491), 1, + STATE(410), 1, + sym_value, + STATE(413), 1, + sym_expression, + STATE(426), 1, + sym_function_call, + STATE(480), 1, sym_statement_kind, - STATE(557), 1, + STATE(518), 1, sym_statement, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(540), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(251), 2, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(185), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -9758,7 +9778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9771,81 +9791,81 @@ static const uint16_t ts_small_parse_table[] = { [6600] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(9), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(11), 1, + ACTIONS(189), 1, anon_sym_CARET, - ACTIONS(13), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(21), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(27), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - STATE(97), 1, + STATE(357), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, - sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, - sym_command, - STATE(265), 1, + STATE(372), 1, sym_if, - STATE(313), 1, - sym_statement, - STATE(337), 1, + STATE(410), 1, + sym_value, + STATE(413), 1, + sym_expression, + STATE(426), 1, + sym_function_call, + STATE(491), 1, sym_statement_kind, - STATE(833), 1, + STATE(540), 1, + sym_command, + STATE(771), 1, + sym_statement, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(824), 1, sym_function_expression, - STATE(840), 1, + STATE(838), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 2, + ACTIONS(249), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -9854,7 +9874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9867,81 +9887,81 @@ static const uint16_t ts_small_parse_table[] = { [6731] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_LPAREN, ACTIONS(187), 1, - anon_sym_CARET, - ACTIONS(189), 1, - aux_sym_command_argument_token2, + anon_sym_LPAREN, ACTIONS(191), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(193), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(195), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, ACTIONS(205), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, anon_sym_struct, - STATE(195), 1, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(227), 1, - sym_value, - STATE(269), 1, - sym_expression, - STATE(275), 1, - sym_command, - STATE(277), 1, - sym_function_call, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(495), 1, + STATE(397), 1, + sym_function_call, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, + sym_command, + STATE(480), 1, sym_statement_kind, STATE(518), 1, sym_statement, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(183), 2, - anon_sym_return, - anon_sym_break, - ACTIONS(201), 2, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + ACTIONS(251), 2, + anon_sym_return, + anon_sym_break, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -9950,7 +9970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -9963,81 +9983,81 @@ static const uint16_t ts_small_parse_table[] = { [6862] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, anon_sym_CARET, - STATE(377), 1, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + STATE(97), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(418), 1, + STATE(115), 1, sym_expression, - STATE(431), 1, - sym_function_call, - STATE(491), 1, - sym_statement_kind, - STATE(529), 1, + STATE(135), 1, sym_command, - STATE(785), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(326), 1, + sym_statement_kind, + STATE(330), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(243), 2, + ACTIONS(253), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -10046,7 +10066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -10059,81 +10079,81 @@ static const uint16_t ts_small_parse_table[] = { [6993] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, - sym_identifier, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(393), 1, - sym_function_call, STATE(397), 1, - sym_value, - STATE(400), 1, + sym_function_call, + STATE(398), 1, sym_expression, - STATE(436), 1, + STATE(410), 1, + sym_value, + STATE(425), 1, sym_command, - STATE(495), 1, + STATE(480), 1, sym_statement_kind, - STATE(531), 1, + STATE(513), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(221), 2, - anon_sym_return, - anon_sym_break, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + ACTIONS(251), 2, + anon_sym_return, + anon_sym_break, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10142,7 +10162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10155,81 +10175,81 @@ static const uint16_t ts_small_parse_table[] = { [7124] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(223), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(225), 1, + ACTIONS(11), 1, anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + STATE(97), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(400), 1, + STATE(115), 1, sym_expression, - STATE(436), 1, + STATE(135), 1, sym_command, - STATE(491), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(326), 1, sym_statement_kind, - STATE(711), 1, + STATE(327), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(253), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -10238,7 +10258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -10251,81 +10271,81 @@ static const uint16_t ts_small_parse_table[] = { [7255] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(225), 1, + ACTIONS(189), 1, anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + STATE(357), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(410), 1, sym_value, - STATE(400), 1, + STATE(413), 1, sym_expression, - STATE(436), 1, - sym_command, - STATE(495), 1, + STATE(426), 1, + sym_function_call, + STATE(480), 1, sym_statement_kind, - STATE(518), 1, + STATE(505), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(540), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(221), 2, + ACTIONS(185), 2, anon_sym_return, anon_sym_break, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10334,7 +10354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10347,81 +10367,81 @@ static const uint16_t ts_small_parse_table[] = { [7386] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_LPAREN, ACTIONS(187), 1, - anon_sym_CARET, - ACTIONS(189), 1, - aux_sym_command_argument_token2, + anon_sym_LPAREN, ACTIONS(191), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(193), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(195), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, ACTIONS(205), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, anon_sym_struct, - STATE(195), 1, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(227), 1, - sym_value, - STATE(269), 1, - sym_expression, - STATE(275), 1, - sym_command, - STATE(277), 1, - sym_function_call, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(495), 1, + STATE(397), 1, + sym_function_call, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, + sym_command, + STATE(480), 1, sym_statement_kind, - STATE(531), 1, + STATE(505), 1, sym_statement, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(183), 2, - anon_sym_return, - anon_sym_break, - ACTIONS(201), 2, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + ACTIONS(251), 2, + anon_sym_return, + anon_sym_break, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10430,7 +10450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10443,81 +10463,81 @@ static const uint16_t ts_small_parse_table[] = { [7517] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, - sym_identifier, - ACTIONS(223), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(55), 1, + sym_identifier, + STATE(102), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(400), 1, + STATE(123), 1, sym_expression, - STATE(436), 1, + STATE(130), 1, sym_command, - STATE(491), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(326), 1, sym_statement_kind, - STATE(711), 1, + STATE(327), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(181), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -10526,7 +10546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -10539,81 +10559,81 @@ static const uint16_t ts_small_parse_table[] = { [7648] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(225), 1, + ACTIONS(189), 1, anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + STATE(357), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(410), 1, sym_value, - STATE(400), 1, + STATE(413), 1, sym_expression, - STATE(436), 1, - sym_command, + STATE(426), 1, + sym_function_call, STATE(491), 1, sym_statement_kind, - STATE(737), 1, + STATE(540), 1, + sym_command, + STATE(787), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(249), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10622,7 +10642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10635,81 +10655,81 @@ static const uint16_t ts_small_parse_table[] = { [7779] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(9), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(21), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(27), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - STATE(97), 1, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, - sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, - sym_command, - STATE(265), 1, + STATE(372), 1, sym_if, - STATE(337), 1, + STATE(397), 1, + sym_function_call, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, + sym_command, + STATE(491), 1, sym_statement_kind, - STATE(340), 1, + STATE(748), 1, sym_statement, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(824), 1, sym_function_expression, - STATE(840), 1, + STATE(838), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(253), 2, + ACTIONS(245), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10718,7 +10738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10731,81 +10751,81 @@ static const uint16_t ts_small_parse_table[] = { [7910] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, anon_sym_CARET, - STATE(377), 1, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + STATE(97), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(418), 1, + STATE(115), 1, sym_expression, - STATE(431), 1, - sym_function_call, - STATE(495), 1, - sym_statement_kind, - STATE(518), 1, - sym_statement, - STATE(529), 1, + STATE(135), 1, sym_command, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(315), 1, + sym_statement, + STATE(326), 1, + sym_statement_kind, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(255), 2, + ACTIONS(253), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -10814,7 +10834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -10827,81 +10847,81 @@ static const uint16_t ts_small_parse_table[] = { [8041] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + ACTIONS(243), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(247), 1, anon_sym_CARET, - STATE(377), 1, + STATE(356), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, STATE(397), 1, - sym_value, - STATE(418), 1, - sym_expression, - STATE(431), 1, sym_function_call, - STATE(495), 1, - sym_statement_kind, - STATE(529), 1, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, sym_command, - STATE(531), 1, + STATE(491), 1, + sym_statement_kind, + STATE(713), 1, sym_statement, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(255), 2, + ACTIONS(245), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -10910,7 +10930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -10923,81 +10943,81 @@ static const uint16_t ts_small_parse_table[] = { [8172] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + ACTIONS(243), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(247), 1, anon_sym_CARET, - STATE(377), 1, + STATE(356), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, STATE(397), 1, - sym_value, - STATE(418), 1, - sym_expression, - STATE(431), 1, sym_function_call, - STATE(486), 1, - sym_statement, - STATE(495), 1, - sym_statement_kind, - STATE(529), 1, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, sym_command, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(491), 1, + sym_statement_kind, + STATE(713), 1, + sym_statement, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - ACTIONS(255), 2, + ACTIONS(245), 2, anon_sym_return, anon_sym_break, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -11006,7 +11026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11019,81 +11039,81 @@ static const uint16_t ts_small_parse_table[] = { [8303] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, + ACTIONS(221), 1, sym_identifier, - STATE(101), 1, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_CARET, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(231), 1, + anon_sym_LBRACE, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + STATE(196), 1, sym_index, - STATE(119), 1, + STATE(210), 1, sym_value, - STATE(120), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, - sym_command, STATE(265), 1, + sym_expression, + STATE(276), 1, + sym_function_call, + STATE(279), 1, + sym_command, + STATE(372), 1, sym_if, - STATE(337), 1, + STATE(491), 1, sym_statement_kind, - STATE(340), 1, + STATE(566), 1, sym_statement, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, + STATE(801), 1, sym_index_expression, - ACTIONS(25), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - ACTIONS(249), 2, + ACTIONS(255), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -11102,7 +11122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11115,81 +11135,81 @@ static const uint16_t ts_small_parse_table[] = { [8434] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, + ACTIONS(221), 1, sym_identifier, - STATE(101), 1, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_CARET, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(231), 1, + anon_sym_LBRACE, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + STATE(196), 1, sym_index, - STATE(119), 1, + STATE(210), 1, sym_value, - STATE(120), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, - sym_command, STATE(265), 1, + sym_expression, + STATE(276), 1, + sym_function_call, + STATE(279), 1, + sym_command, + STATE(372), 1, sym_if, - STATE(313), 1, - sym_statement, - STATE(337), 1, + STATE(480), 1, sym_statement_kind, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, + STATE(505), 1, + sym_statement, + STATE(801), 1, sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(249), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(223), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -11198,7 +11218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11211,81 +11231,81 @@ static const uint16_t ts_small_parse_table[] = { [8565] = 35, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - STATE(97), 1, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_CARET, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(231), 1, + anon_sym_LBRACE, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + STATE(196), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, + STATE(210), 1, sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, - sym_command, STATE(265), 1, + sym_expression, + STATE(276), 1, + sym_function_call, + STATE(279), 1, + sym_command, + STATE(372), 1, sym_if, - STATE(312), 1, - sym_statement, - STATE(337), 1, + STATE(480), 1, sym_statement_kind, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, + STATE(518), 1, + sym_statement, + STATE(801), 1, sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(253), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(223), 2, anon_sym_return, anon_sym_break, - STATE(322), 2, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -11294,7 +11314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11307,76 +11327,76 @@ static const uint16_t ts_small_parse_table[] = { [8696] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(219), 1, + anon_sym_struct, + ACTIONS(221), 1, sym_identifier, - ACTIONS(223), 1, - anon_sym_LPAREN, ACTIONS(225), 1, - anon_sym_CARET, + anon_sym_LPAREN, ACTIONS(227), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(229), 1, - anon_sym_LBRACE, + aux_sym_command_argument_token2, ACTIONS(231), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - STATE(353), 1, + STATE(196), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(393), 1, - sym_function_call, - STATE(397), 1, + STATE(210), 1, sym_value, - STATE(400), 1, + STATE(265), 1, sym_expression, - STATE(436), 1, + STATE(276), 1, + sym_function_call, + STATE(279), 1, sym_command, - STATE(480), 1, + STATE(372), 1, + sym_if, + STATE(478), 1, sym_statement_kind, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, + STATE(801), 1, sym_index_expression, - ACTIONS(237), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -11385,7 +11405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11398,76 +11418,76 @@ static const uint16_t ts_small_parse_table[] = { [8820] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, - anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_if, - ACTIONS(31), 1, - anon_sym_match, - ACTIONS(33), 1, - anon_sym_while, - ACTIONS(35), 1, - anon_sym_for, - ACTIONS(37), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - ACTIONS(47), 1, - anon_sym_CARET, - ACTIONS(55), 1, + ACTIONS(183), 1, sym_identifier, - STATE(101), 1, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_CARET, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + STATE(357), 1, sym_index, - STATE(119), 1, - sym_value, - STATE(120), 1, - sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, - sym_command, - STATE(265), 1, + STATE(372), 1, sym_if, - STATE(326), 1, + STATE(410), 1, + sym_value, + STATE(413), 1, + sym_expression, + STATE(426), 1, + sym_function_call, + STATE(478), 1, sym_statement_kind, - STATE(833), 1, + STATE(540), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(824), 1, sym_function_expression, - STATE(840), 1, + STATE(838), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -11476,7 +11496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11489,76 +11509,76 @@ static const uint16_t ts_small_parse_table[] = { [8944] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(183), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_CARET, - STATE(377), 1, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + STATE(357), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(397), 1, + STATE(410), 1, sym_value, - STATE(418), 1, + STATE(413), 1, sym_expression, - STATE(431), 1, + STATE(426), 1, sym_function_call, - STATE(480), 1, + STATE(490), 1, sym_statement_kind, - STATE(529), 1, + STATE(540), 1, sym_command, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -11567,7 +11587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11580,76 +11600,76 @@ static const uint16_t ts_small_parse_table[] = { [9068] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, + ACTIONS(193), 1, anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(207), 1, anon_sym_if, - ACTIONS(31), 1, + ACTIONS(209), 1, anon_sym_match, - ACTIONS(33), 1, + ACTIONS(211), 1, anon_sym_while, - ACTIONS(35), 1, + ACTIONS(213), 1, anon_sym_for, - ACTIONS(37), 1, + ACTIONS(215), 1, anon_sym_asyncfor, - ACTIONS(39), 1, + ACTIONS(217), 1, anon_sym_enum, - ACTIONS(41), 1, + ACTIONS(219), 1, anon_sym_struct, - STATE(97), 1, + ACTIONS(221), 1, + sym_identifier, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_CARET, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(231), 1, + anon_sym_LBRACE, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + STATE(196), 1, sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, + STATE(210), 1, sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, - sym_command, STATE(265), 1, + sym_expression, + STATE(276), 1, + sym_function_call, + STATE(279), 1, + sym_command, + STATE(372), 1, sym_if, - STATE(326), 1, + STATE(490), 1, sym_statement_kind, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, + STATE(801), 1, sym_index_expression, - ACTIONS(25), 2, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(322), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(246), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(23), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -11658,7 +11678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -11669,97 +11689,6 @@ static const uint16_t ts_small_parse_table[] = { sym_for, sym_type_definition, [9192] = 33, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym_identifier, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(15), 1, - anon_sym_async, - ACTIONS(17), 1, - anon_sym_LBRACE, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_if, - ACTIONS(31), 1, - anon_sym_match, - ACTIONS(33), 1, - anon_sym_while, - ACTIONS(35), 1, - anon_sym_for, - ACTIONS(37), 1, - anon_sym_asyncfor, - ACTIONS(39), 1, - anon_sym_enum, - ACTIONS(41), 1, - anon_sym_struct, - STATE(97), 1, - sym_index, - STATE(113), 1, - sym_expression, - STATE(119), 1, - sym_value, - STATE(126), 1, - sym_function_call, - STATE(130), 1, - sym_command, - STATE(265), 1, - sym_if, - STATE(331), 1, - sym_statement_kind, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(322), 2, - sym_enum_definition, - sym_struct_definition, - STATE(135), 4, - sym__expression_kind, - sym_as, - sym_math, - sym_logic, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - STATE(320), 9, - sym_pipe, - sym_block, - sym_assignment, - sym_index_assignment, - sym_if_else, - sym_match, - sym_while, - sym_for, - sym_type_definition, - [9316] = 33, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -11794,33 +11723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(55), 1, sym_identifier, - STATE(101), 1, + STATE(102), 1, sym_index, - STATE(119), 1, + STATE(114), 1, sym_value, - STATE(120), 1, + STATE(123), 1, sym_expression, - STATE(134), 1, - sym_function_call, - STATE(138), 1, + STATE(130), 1, sym_command, - STATE(265), 1, + STATE(131), 1, + sym_function_call, + STATE(267), 1, sym_if, - STATE(331), 1, + STATE(323), 1, sym_statement_kind, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(322), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(135), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, @@ -11831,7 +11760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -11840,7 +11769,98 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(320), 9, + STATE(331), 9, + sym_pipe, + sym_block, + sym_assignment, + sym_index_assignment, + sym_if_else, + sym_match, + sym_while, + sym_for, + sym_type_definition, + [9316] = 33, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + STATE(97), 1, + sym_index, + STATE(114), 1, + sym_value, + STATE(115), 1, + sym_expression, + STATE(135), 1, + sym_command, + STATE(139), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(328), 1, + sym_statement_kind, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(319), 2, + sym_enum_definition, + sym_struct_definition, + STATE(138), 4, + sym__expression_kind, + sym_as, + sym_math, + sym_logic, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -11853,76 +11873,76 @@ static const uint16_t ts_small_parse_table[] = { [9440] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(229), 1, - anon_sym_LBRACE, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(5), 1, sym_identifier, - ACTIONS(245), 1, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, anon_sym_CARET, - STATE(377), 1, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(15), 1, + anon_sym_async, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_if, + ACTIONS(31), 1, + anon_sym_match, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(35), 1, + anon_sym_for, + ACTIONS(37), 1, + anon_sym_asyncfor, + ACTIONS(39), 1, + anon_sym_enum, + ACTIONS(41), 1, + anon_sym_struct, + STATE(97), 1, sym_index, - STATE(379), 1, - sym_if, - STATE(397), 1, + STATE(114), 1, sym_value, - STATE(418), 1, + STATE(115), 1, sym_expression, - STATE(431), 1, - sym_function_call, - STATE(475), 1, - sym_statement_kind, - STATE(529), 1, + STATE(135), 1, sym_command, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(139), 1, + sym_function_call, + STATE(267), 1, + sym_if, + STATE(323), 1, + sym_statement_kind, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -11931,7 +11951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -11944,76 +11964,76 @@ static const uint16_t ts_small_parse_table[] = { [9564] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(191), 1, - anon_sym_async, - ACTIONS(205), 1, - anon_sym_if, - ACTIONS(207), 1, - anon_sym_match, - ACTIONS(209), 1, - anon_sym_while, - ACTIONS(211), 1, - anon_sym_for, - ACTIONS(213), 1, - anon_sym_asyncfor, - ACTIONS(215), 1, - anon_sym_enum, - ACTIONS(217), 1, - anon_sym_struct, - ACTIONS(219), 1, - sym_identifier, - ACTIONS(223), 1, + ACTIONS(187), 1, anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_CARET, - ACTIONS(227), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(229), 1, + ACTIONS(193), 1, + anon_sym_async, + ACTIONS(195), 1, anon_sym_LBRACE, - ACTIONS(231), 1, + ACTIONS(197), 1, sym_range, - ACTIONS(233), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(205), 1, anon_sym_LBRACK, - STATE(353), 1, + ACTIONS(207), 1, + anon_sym_if, + ACTIONS(209), 1, + anon_sym_match, + ACTIONS(211), 1, + anon_sym_while, + ACTIONS(213), 1, + anon_sym_for, + ACTIONS(215), 1, + anon_sym_asyncfor, + ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, + anon_sym_struct, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(393), 1, - sym_function_call, STATE(397), 1, - sym_value, - STATE(400), 1, + sym_function_call, + STATE(398), 1, sym_expression, - STATE(436), 1, + STATE(410), 1, + sym_value, + STATE(425), 1, sym_command, - STATE(475), 1, + STATE(490), 1, sym_statement_kind, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(852), 1, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(454), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(235), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -12022,7 +12042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -12035,76 +12055,76 @@ static const uint16_t ts_small_parse_table[] = { [9688] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, + ACTIONS(9), 1, anon_sym_LPAREN, - ACTIONS(187), 1, - anon_sym_CARET, - ACTIONS(189), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(191), 1, + ACTIONS(15), 1, anon_sym_async, - ACTIONS(193), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(195), 1, + ACTIONS(19), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(205), 1, + ACTIONS(29), 1, anon_sym_if, - ACTIONS(207), 1, + ACTIONS(31), 1, anon_sym_match, - ACTIONS(209), 1, + ACTIONS(33), 1, anon_sym_while, - ACTIONS(211), 1, + ACTIONS(35), 1, anon_sym_for, - ACTIONS(213), 1, + ACTIONS(37), 1, anon_sym_asyncfor, - ACTIONS(215), 1, + ACTIONS(39), 1, anon_sym_enum, - ACTIONS(217), 1, + ACTIONS(41), 1, anon_sym_struct, - STATE(195), 1, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(55), 1, + sym_identifier, + STATE(102), 1, sym_index, - STATE(227), 1, + STATE(114), 1, sym_value, - STATE(269), 1, + STATE(123), 1, sym_expression, - STATE(275), 1, + STATE(130), 1, sym_command, - STATE(277), 1, + STATE(131), 1, sym_function_call, - STATE(379), 1, + STATE(267), 1, sym_if, - STATE(475), 1, + STATE(328), 1, sym_statement_kind, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(319), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(138), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -12113,7 +12133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(331), 9, sym_pipe, sym_block, sym_assignment, @@ -12126,76 +12146,76 @@ static const uint16_t ts_small_parse_table[] = { [9812] = 33, ACTIONS(3), 1, sym__comment, - ACTIONS(181), 1, - sym_identifier, - ACTIONS(185), 1, - anon_sym_LPAREN, ACTIONS(187), 1, - anon_sym_CARET, - ACTIONS(189), 1, - aux_sym_command_argument_token2, + anon_sym_LPAREN, ACTIONS(191), 1, - anon_sym_async, + aux_sym_command_argument_token2, ACTIONS(193), 1, - anon_sym_LBRACE, + anon_sym_async, ACTIONS(195), 1, - sym_range, + anon_sym_LBRACE, ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, ACTIONS(205), 1, - anon_sym_if, + anon_sym_LBRACK, ACTIONS(207), 1, - anon_sym_match, + anon_sym_if, ACTIONS(209), 1, - anon_sym_while, + anon_sym_match, ACTIONS(211), 1, - anon_sym_for, + anon_sym_while, ACTIONS(213), 1, - anon_sym_asyncfor, + anon_sym_for, ACTIONS(215), 1, - anon_sym_enum, + anon_sym_asyncfor, ACTIONS(217), 1, + anon_sym_enum, + ACTIONS(219), 1, anon_sym_struct, - STATE(195), 1, + ACTIONS(243), 1, + sym_identifier, + ACTIONS(247), 1, + anon_sym_CARET, + STATE(356), 1, sym_index, - STATE(227), 1, - sym_value, - STATE(269), 1, - sym_expression, - STATE(275), 1, - sym_command, - STATE(277), 1, - sym_function_call, - STATE(379), 1, + STATE(372), 1, sym_if, - STATE(480), 1, + STATE(397), 1, + sym_function_call, + STATE(398), 1, + sym_expression, + STATE(410), 1, + sym_value, + STATE(425), 1, + sym_command, + STATE(478), 1, sym_statement_kind, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(496), 2, + STATE(527), 2, sym_enum_definition, sym_struct_definition, - STATE(249), 4, + STATE(462), 4, sym__expression_kind, sym_as, sym_math, sym_logic, - ACTIONS(199), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(155), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -12204,7 +12224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - STATE(476), 9, + STATE(529), 9, sym_pipe, sym_block, sym_assignment, @@ -12227,9 +12247,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(271), 1, anon_sym_COLON_COLON, - STATE(65), 1, + STATE(45), 1, sym_assignment_operator, - STATE(680), 1, + STATE(689), 1, sym_type_specification, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -12381,21 +12401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10120] = 3, + [10120] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(281), 24, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(263), 1, + anon_sym_EQ, + ACTIONS(265), 1, + anon_sym_COLON, + ACTIONS(267), 1, + anon_sym_LT, + ACTIONS(271), 1, + anon_sym_COLON_COLON, + STATE(61), 1, + sym_assignment_operator, + STATE(691), 1, + sym_type_specification, + ACTIONS(269), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(259), 17, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -12405,11 +12438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, anon_sym_asyncfor, - ACTIONS(283), 24, + ACTIONS(257), 22, anon_sym_return, anon_sym_break, anon_sym_as, @@ -12423,18 +12453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - anon_sym_LT, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [10176] = 11, + [10192] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -12445,11 +12473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(271), 1, anon_sym_COLON_COLON, - ACTIONS(285), 1, + ACTIONS(281), 1, anon_sym_EQ, - STATE(65), 1, + STATE(45), 1, sym_assignment_operator, - STATE(679), 1, + STATE(687), 1, sym_type_specification, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -12495,7 +12523,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10248] = 3, + [10264] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(283), 24, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_asyncfor, + ACTIONS(285), 24, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [10320] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(287), 24, @@ -12548,7 +12629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10304] = 3, + [10376] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(291), 24, @@ -12601,7 +12682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10360] = 3, + [10432] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(295), 24, @@ -12654,7 +12735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10416] = 3, + [10488] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(299), 24, @@ -12707,7 +12788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10472] = 3, + [10544] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(303), 24, @@ -12760,7 +12841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10528] = 3, + [10600] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(307), 24, @@ -12813,7 +12894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10584] = 3, + [10656] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(311), 24, @@ -12866,7 +12947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10640] = 3, + [10712] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(315), 24, @@ -12919,67 +13000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10696] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(263), 1, - anon_sym_EQ, - ACTIONS(265), 1, - anon_sym_COLON, - ACTIONS(267), 1, - anon_sym_LT, - ACTIONS(271), 1, - anon_sym_COLON_COLON, - STATE(51), 1, - sym_assignment_operator, - STATE(683), 1, - sym_type_specification, - ACTIONS(269), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(259), 17, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(257), 22, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, [10768] = 3, ACTIONS(3), 1, sym__comment, @@ -13084,14 +13104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10878] = 4, + [10878] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(329), 1, - anon_sym_LPAREN, - ACTIONS(325), 22, + ACTIONS(325), 23, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, @@ -13137,59 +13156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [10935] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(331), 23, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_asyncfor, - ACTIONS(333), 24, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [10990] = 3, + [10933] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(319), 23, @@ -13241,7 +13208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [11045] = 4, + [10988] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(271), 1, @@ -13294,6 +13261,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, + [11045] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(333), 1, + anon_sym_LPAREN, + ACTIONS(329), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_asyncfor, + ACTIONS(331), 24, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, [11102] = 8, ACTIONS(3), 1, sym__comment, @@ -13303,7 +13323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(319), 1, anon_sym_COLON, - STATE(66), 1, + STATE(55), 1, sym_assignment_operator, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -13503,63 +13523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [11328] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(263), 1, - anon_sym_EQ, - ACTIONS(319), 1, - anon_sym_COLON, - STATE(49), 1, - sym_assignment_operator, - ACTIONS(269), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(259), 17, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(257), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [11392] = 3, + [11328] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(347), 22, @@ -13610,21 +13574,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, + [11382] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(263), 1, + anon_sym_EQ, + ACTIONS(319), 1, + anon_sym_COLON, + STATE(58), 1, + sym_assignment_operator, + ACTIONS(269), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(259), 17, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(257), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, [11446] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, ACTIONS(357), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(106), 2, + STATE(103), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(355), 4, + ACTIONS(351), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(351), 37, + ACTIONS(353), 36, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13632,7 +13653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13663,21 +13683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, [11503] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, - ACTIONS(363), 2, + ACTIONS(360), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(104), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(359), 5, - ts_builtin_sym_end, + ACTIONS(351), 4, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(361), 36, + ACTIONS(353), 37, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13685,6 +13704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13715,20 +13735,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, [11560] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, - ACTIONS(366), 2, + ACTIONS(367), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(105), 2, + STATE(106), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(359), 4, + ACTIONS(363), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(361), 37, + ACTIONS(365), 36, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13736,7 +13757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13767,20 +13787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, [11617] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, - ACTIONS(357), 2, + ACTIONS(367), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(105), 2, + STATE(103), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(371), 4, + ACTIONS(369), 5, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(369), 37, + ACTIONS(371), 36, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13788,7 +13809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13819,7 +13839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, [11674] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, ACTIONS(373), 2, aux_sym_command_argument_token1, @@ -13827,13 +13847,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(104), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(371), 5, - ts_builtin_sym_end, + ACTIONS(369), 4, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(369), 36, + ACTIONS(371), 37, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13841,6 +13860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -13871,7 +13891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, [11731] = 5, - ACTIONS(353), 1, + ACTIONS(355), 1, sym__comment, ACTIONS(373), 2, aux_sym_command_argument_token1, @@ -13879,13 +13899,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(107), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(355), 5, - ts_builtin_sym_end, + ACTIONS(363), 4, anon_sym_SEMI, anon_sym_CARET, anon_sym_PIPE_PIPE, anon_sym_asyncfor, - ACTIONS(351), 36, + ACTIONS(365), 37, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -13893,66 +13912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_async, anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [11788] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(375), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(377), 24, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, sym_identifier, + sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -13961,66 +13923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [11840] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(379), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(381), 24, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_PIPE, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_GT, anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [11892] = 6, + [11788] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -14072,12 +13994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [11950] = 4, + [11846] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(315), 20, + ACTIONS(375), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -14098,106 +14018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(317), 23, + ACTIONS(377), 24, anon_sym_return, anon_sym_break, anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12004] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(387), 1, - anon_sym_as, - STATE(205), 1, - sym_logic_operator, - STATE(239), 1, - sym_math_operator, - ACTIONS(389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(383), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(385), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12069] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 5, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(399), 38, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_as, anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, anon_sym_async, - anon_sym_LBRACE, sym_identifier, - sym_range, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -14206,34 +14033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_if, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [12120] = 4, + [11898] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(405), 1, - anon_sym_DASH_GT, - ACTIONS(401), 19, + ACTIONS(379), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, @@ -14250,108 +14067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(403), 23, + ACTIONS(381), 24, anon_sym_return, anon_sym_break, anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12173] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 4, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - anon_sym_asyncfor, - ACTIONS(399), 39, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_as, anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12224] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(215), 1, - sym_logic_operator, - STATE(228), 1, - sym_math_operator, - ACTIONS(409), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(407), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, anon_sym_async, sym_identifier, sym_integer, @@ -14372,20 +14092,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12279] = 3, + [11950] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(343), 20, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, + ACTIONS(319), 1, anon_sym_COLON, + ACTIONS(295), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -14396,7 +14118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(345), 23, + ACTIONS(297), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -14420,7 +14142,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12330] = 5, + [12004] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(200), 1, + sym_math_operator, + STATE(202), 1, + sym_logic_operator, + ACTIONS(383), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(385), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12059] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -14470,43 +14242,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12385] = 10, + [12114] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(387), 1, + ACTIONS(391), 1, anon_sym_as, - STATE(215), 1, - sym_logic_operator, - STATE(228), 1, + STATE(200), 1, sym_math_operator, - ACTIONS(389), 2, + STATE(202), 1, + sym_logic_operator, + ACTIONS(393), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(395), 2, + ACTIONS(399), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 3, + ACTIONS(395), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(383), 9, + ACTIONS(387), 9, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(385), 18, + ACTIONS(389), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -14525,7 +14297,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12450] = 4, + [12179] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(403), 38, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12230] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(409), 1, + anon_sym_DASH_GT, + ACTIONS(405), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(407), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12283] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(415), 1, @@ -14574,20 +14443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12503] = 5, + [12336] = 5, ACTIONS(3), 1, sym__comment, - STATE(205), 1, - sym_logic_operator, - STATE(239), 1, - sym_math_operator, - ACTIONS(409), 18, + ACTIONS(421), 1, + anon_sym_LT, + STATE(137), 1, + sym_type_arguments, + ACTIONS(417), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, @@ -14600,7 +14470,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(407), 23, + ACTIONS(419), 22, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12391] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 4, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + anon_sym_asyncfor, + ACTIONS(403), 39, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12442] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(234), 1, + sym_logic_operator, + STATE(240), 1, + sym_math_operator, + ACTIONS(425), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(423), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -14624,22 +14591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12558] = 5, + [12497] = 3, ACTIONS(3), 1, sym__comment, - STATE(205), 1, - sym_logic_operator, - STATE(239), 1, - sym_math_operator, - ACTIONS(417), 18, + ACTIONS(347), 20, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -14650,7 +14615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(419), 23, + ACTIONS(349), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -14674,14 +14639,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, + [12548] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(391), 1, + anon_sym_as, + STATE(234), 1, + sym_logic_operator, + STATE(240), 1, + sym_math_operator, + ACTIONS(393), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(389), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, [12613] = 5, ACTIONS(3), 1, sym__comment, - STATE(215), 1, + STATE(234), 1, sym_logic_operator, - STATE(228), 1, + STATE(240), 1, sym_math_operator, - ACTIONS(417), 18, + ACTIONS(383), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, @@ -14700,7 +14720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(419), 23, + ACTIONS(385), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -14724,12 +14744,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12668] = 4, + [12668] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(425), 1, + STATE(200), 1, + sym_math_operator, + STATE(202), 1, + sym_logic_operator, + ACTIONS(425), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(423), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, anon_sym_LT, - ACTIONS(421), 19, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12723] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(427), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -14749,55 +14817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(423), 22, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12720] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(427), 1, - anon_sym_PIPE, - ACTIONS(259), 17, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(257), 23, + ACTIONS(429), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -14821,54 +14841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12774] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(429), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(431), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [12824] = 4, + [12773] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -14916,7 +14889,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12876] = 3, + [12825] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(431), 1, + anon_sym_LT, + ACTIONS(417), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(419), 22, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12877] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(417), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(419), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12927] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(433), 1, + anon_sym_PIPE, + ACTIONS(259), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(257), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [12979] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(433), 1, + anon_sym_PIPE, + ACTIONS(259), 17, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(257), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [13033] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(411), 19, @@ -14963,10 +15128,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12926] = 4, + [13083] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(427), 1, + ACTIONS(435), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(437), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [13133] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(439), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_asyncfor, + ACTIONS(441), 23, + anon_sym_return, + anon_sym_break, + anon_sym_as, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [13183] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(443), 1, anon_sym_PIPE, ACTIONS(259), 18, ts_builtin_sym_end, @@ -15011,10 +15270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [12978] = 3, + [13235] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(433), 19, + ACTIONS(445), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -15034,7 +15293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(435), 23, + ACTIONS(447), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -15058,10 +15317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [13028] = 3, + [13285] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(437), 19, + ACTIONS(405), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -15081,7 +15340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(439), 23, + ACTIONS(407), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -15105,10 +15364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [13078] = 3, + [13335] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(441), 19, + ACTIONS(449), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -15128,7 +15387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(443), 23, + ACTIONS(451), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -15152,19 +15411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [13128] = 5, + [13385] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(445), 1, + ACTIONS(443), 1, anon_sym_PIPE, ACTIONS(259), 17, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_STAR, @@ -15201,10 +15460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [13182] = 3, + [13439] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(447), 19, + ACTIONS(453), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -15224,7 +15483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_asyncfor, - ACTIONS(449), 23, + ACTIONS(455), 23, anon_sym_return, anon_sym_break, anon_sym_as, @@ -15248,200 +15507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [13232] = 4, + [13489] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(451), 1, - anon_sym_LT, - ACTIONS(421), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(423), 22, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [13284] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(421), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(423), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [13334] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(445), 1, - anon_sym_PIPE, - ACTIONS(259), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(257), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [13386] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(401), 19, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_asyncfor, - ACTIONS(403), 23, - anon_sym_return, - anon_sym_break, - anon_sym_as, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [13436] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(453), 1, + ACTIONS(457), 1, anon_sym_COLON_COLON, ACTIONS(265), 16, anon_sym_as, @@ -15483,222 +15552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13485] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(311), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13531] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(291), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13577] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(343), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13623] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(279), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(277), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13669] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13715] = 3, + [13538] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(337), 15, @@ -15741,50 +15595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13761] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(341), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(339), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13807] = 3, + [13584] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(265), 15, @@ -15827,265 +15638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [13853] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(349), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(347), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13899] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13945] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(307), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [13991] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(333), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(331), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [14037] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [14083] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(323), 15, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(321), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [14129] = 3, + [13630] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(317), 15, @@ -16128,7 +15681,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14175] = 3, + [13676] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(323), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(321), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13722] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(313), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(311), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13768] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(305), 15, @@ -16171,10 +15810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14221] = 3, + [13814] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(275), 15, + ACTIONS(309), 15, anon_sym_as, sym_identifier, sym_integer, @@ -16190,7 +15829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(273), 23, + ACTIONS(307), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -16214,61 +15853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14267] = 11, + [13860] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(263), 1, - anon_sym_EQ, - ACTIONS(265), 1, - anon_sym_COLON, - ACTIONS(267), 1, - anon_sym_LT, - ACTIONS(453), 1, - anon_sym_COLON_COLON, - STATE(45), 1, - sym_assignment_operator, - STATE(686), 1, - sym_type_specification, - ACTIONS(269), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(257), 13, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - ACTIONS(259), 16, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [14329] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(283), 15, + ACTIONS(301), 15, anon_sym_as, sym_identifier, sym_integer, @@ -16284,7 +15872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(281), 23, + ACTIONS(299), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -16308,7 +15896,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14375] = 3, + [13906] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(459), 1, + anon_sym_LPAREN, + ACTIONS(331), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(329), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [13954] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(297), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14000] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(347), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14046] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(289), 15, @@ -16351,12 +16069,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14421] = 4, + [14092] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(455), 1, + ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(327), 15, + ACTIONS(263), 1, + anon_sym_EQ, + ACTIONS(265), 1, + anon_sym_COLON, + ACTIONS(267), 1, + anon_sym_LT, + ACTIONS(457), 1, + anon_sym_COLON_COLON, + STATE(66), 1, + sym_assignment_operator, + STATE(692), 1, + sym_type_specification, + ACTIONS(269), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(257), 13, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(259), 16, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [14154] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(345), 15, anon_sym_as, sym_identifier, sym_integer, @@ -16372,8 +16139,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(325), 22, + ACTIONS(343), 23, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_CARET, @@ -16395,58 +16163,599 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14469] = 21, + [14200] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(457), 1, + ACTIONS(279), 15, + anon_sym_as, sym_identifier, - ACTIONS(459), 1, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(277), 23, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(461), 1, anon_sym_RPAREN, - ACTIONS(463), 1, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(465), 1, aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14246] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(341), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(339), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14292] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(327), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(325), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14338] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(283), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14384] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14430] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(275), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(273), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14476] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(293), 15, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(291), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [14522] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + STATE(184), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [14603] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, ACTIONS(467), 1, anon_sym_LBRACE, ACTIONS(469), 1, - sym_range, + anon_sym_CARET, ACTIONS(471), 1, + anon_sym_RBRACK, + STATE(171), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_function_call, + STATE(271), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [14684] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(473), 1, + anon_sym_RPAREN, + STATE(185), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [14765] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(475), 1, + anon_sym_RPAREN, + STATE(195), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [14846] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, ACTIONS(477), 1, - anon_sym_LBRACK, - STATE(615), 1, - sym_expression, - STATE(617), 1, + anon_sym_RBRACK, + STATE(171), 1, + aux_sym_list_repeat1, + STATE(244), 1, sym_function_call, - STATE(697), 1, - aux_sym_function_repeat1, - STATE(783), 1, - sym__function_expression_kind, - STATE(824), 1, + STATE(271), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - ACTIONS(475), 2, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(487), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(641), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -16455,418 +16764,238 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [14550] = 21, + [14927] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(481), 1, + ACTIONS(465), 1, anon_sym_CARET, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, + ACTIONS(479), 1, + anon_sym_RPAREN, + STATE(180), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15008] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(481), 1, + anon_sym_RPAREN, + STATE(193), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15089] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_RPAREN, + STATE(184), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15170] = 21, + ACTIONS(3), 1, + sym__comment, ACTIONS(485), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14631] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(487), 1, - anon_sym_RPAREN, - ACTIONS(489), 1, - anon_sym_CARET, - STATE(184), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14712] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, + ACTIONS(488), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, ACTIONS(491), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14793] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, anon_sym_CARET, - ACTIONS(493), 1, - anon_sym_RPAREN, - STATE(164), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14874] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(494), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, - ACTIONS(495), 1, - anon_sym_RPAREN, - STATE(175), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [14955] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, ACTIONS(497), 1, - anon_sym_RPAREN, - STATE(184), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15036] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, + anon_sym_LBRACE, + ACTIONS(500), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(503), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(512), 1, anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(499), 1, + ACTIONS(515), 1, anon_sym_RBRACK, - STATE(172), 1, + STATE(171), 1, aux_sym_list_repeat1, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(260), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(509), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(506), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -16875,238 +17004,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15117] = 21, + [15251] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(501), 1, + ACTIONS(517), 1, sym_identifier, - ACTIONS(504), 1, - anon_sym_LPAREN, - ACTIONS(507), 1, - anon_sym_CARET, - ACTIONS(510), 1, - aux_sym_command_argument_token2, - ACTIONS(513), 1, - anon_sym_LBRACE, - ACTIONS(516), 1, - sym_range, ACTIONS(519), 1, - sym_integer, - ACTIONS(528), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_RPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, ACTIONS(531), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(525), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(522), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15198] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, - ACTIONS(533), 1, - anon_sym_RPAREN, - STATE(188), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15279] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(535), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15360] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, ACTIONS(537), 1, - anon_sym_RPAREN, - STATE(168), 1, - aux_sym__expression_list, - STATE(258), 1, + anon_sym_LBRACK, + STATE(611), 1, sym_function_call, - STATE(261), 1, + STATE(629), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(705), 1, + aux_sym_function_repeat1, + STATE(780), 1, sym__function_expression_kind, - ACTIONS(201), 2, + STATE(810), 1, + sym_function_expression, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(528), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(659), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -17115,58 +17064,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15441] = 21, + [15332] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(539), 1, anon_sym_RPAREN, - STATE(177), 1, + STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17175,58 +17124,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15522] = 21, + [15413] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(541), 1, anon_sym_RPAREN, - STATE(184), 1, + STATE(163), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17235,238 +17184,238 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15603] = 21, + [15494] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(543), 1, - anon_sym_RBRACK, - STATE(170), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15684] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, - ACTIONS(545), 1, - anon_sym_RPAREN, - STATE(184), 1, - aux_sym__expression_list, - STATE(258), 1, - sym_function_call, - STATE(261), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15765] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(547), 1, - anon_sym_RBRACK, - STATE(165), 1, - aux_sym_list_repeat1, - STATE(258), 1, - sym_function_call, - STATE(260), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [15846] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(457), 1, - sym_identifier, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, ACTIONS(467), 1, anon_sym_LBRACE, ACTIONS(469), 1, + anon_sym_CARET, + ACTIONS(543), 1, + anon_sym_RBRACK, + STATE(194), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_function_call, + STATE(271), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15575] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, sym_range, - ACTIONS(471), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(477), 1, + ACTIONS(241), 1, anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, + ACTIONS(545), 1, + anon_sym_RBRACK, + STATE(167), 1, + aux_sym_list_repeat1, + STATE(244), 1, + sym_function_call, + STATE(271), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15656] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(517), 1, + sym_identifier, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(547), 1, + anon_sym_RPAREN, + STATE(611), 1, + sym_function_call, + STATE(629), 1, + sym_expression, + STATE(728), 1, + aux_sym_function_repeat1, + STATE(780), 1, + sym__function_expression_kind, + STATE(810), 1, + sym_function_expression, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(646), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [15737] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(549), 1, anon_sym_RPAREN, - STATE(615), 1, - sym_expression, - STATE(617), 1, + STATE(170), 1, + aux_sym__expression_list, + STATE(244), 1, sym_function_call, - STATE(701), 1, - aux_sym_function_repeat1, - STATE(783), 1, - sym__function_expression_kind, - STATE(824), 1, + STATE(269), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - ACTIONS(475), 2, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(487), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(642), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17475,58 +17424,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [15927] = 21, + [15818] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(517), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, ACTIONS(551), 1, anon_sym_RPAREN, - STATE(184), 1, - aux_sym__expression_list, - STATE(258), 1, + STATE(611), 1, sym_function_call, - STATE(261), 1, + STATE(629), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(702), 1, + aux_sym_function_repeat1, + STATE(780), 1, sym__function_expression_kind, - ACTIONS(201), 2, + STATE(810), 1, + sym_function_expression, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(528), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(650), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -17535,58 +17484,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16008] = 21, + [15899] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(553), 1, anon_sym_RPAREN, STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17595,58 +17544,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16089] = 21, + [15980] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, ACTIONS(555), 1, anon_sym_RBRACK, - STATE(193), 1, + STATE(171), 1, aux_sym_list_repeat1, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(260), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17655,58 +17604,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16170] = 21, + [16061] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(557), 1, anon_sym_RPAREN, - STATE(181), 1, + STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17715,58 +17664,118 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16251] = 21, + [16142] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(559), 1, + ACTIONS(517), 1, sym_identifier, - ACTIONS(562), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(565), 1, - anon_sym_RPAREN, - ACTIONS(567), 1, + ACTIONS(523), 1, anon_sym_CARET, - ACTIONS(570), 1, + ACTIONS(525), 1, aux_sym_command_argument_token2, - ACTIONS(573), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(576), 1, + ACTIONS(529), 1, sym_range, - ACTIONS(579), 1, + ACTIONS(531), 1, sym_integer, - ACTIONS(588), 1, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_RPAREN, + STATE(611), 1, + sym_function_call, + STATE(629), 1, + sym_expression, + STATE(703), 1, + aux_sym_function_repeat1, + STATE(780), 1, + sym__function_expression_kind, + STATE(810), 1, + sym_function_expression, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(655), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16223] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(564), 1, + anon_sym_LPAREN, + ACTIONS(567), 1, + anon_sym_RPAREN, + ACTIONS(569), 1, + anon_sym_CARET, + ACTIONS(572), 1, + aux_sym_command_argument_token2, + ACTIONS(575), 1, + anon_sym_LBRACE, + ACTIONS(578), 1, + sym_range, + ACTIONS(581), 1, + sym_integer, + ACTIONS(590), 1, anon_sym_LBRACK, STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(585), 2, + ACTIONS(587), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(582), 5, + ACTIONS(584), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17775,118 +17784,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16332] = 21, + [16304] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(457), 1, - sym_identifier, - ACTIONS(459), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(591), 1, - anon_sym_RPAREN, - STATE(615), 1, - sym_expression, - STATE(617), 1, - sym_function_call, - STATE(696), 1, - aux_sym_function_repeat1, - STATE(783), 1, - sym__function_expression_kind, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(487), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(653), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [16413] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(481), 1, anon_sym_CARET, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, ACTIONS(593), 1, - anon_sym_RBRACK, - STATE(176), 1, - aux_sym_list_repeat1, - STATE(258), 1, + anon_sym_RPAREN, + STATE(184), 1, + aux_sym__expression_list, + STATE(244), 1, sym_function_call, - STATE(260), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17895,58 +17844,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16494] = 21, + [16385] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(469), 1, anon_sym_CARET, ACTIONS(595), 1, - anon_sym_RPAREN, - STATE(180), 1, - aux_sym__expression_list, - STATE(258), 1, + anon_sym_RBRACK, + STATE(171), 1, + aux_sym_list_repeat1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -17955,58 +17904,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16575] = 21, + [16466] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(469), 1, anon_sym_CARET, ACTIONS(597), 1, - anon_sym_RPAREN, - STATE(184), 1, - aux_sym__expression_list, - STATE(258), 1, + anon_sym_RBRACK, + STATE(164), 1, + aux_sym_list_repeat1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18015,58 +17964,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16656] = 21, + [16547] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(457), 1, - sym_identifier, - ACTIONS(459), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, ACTIONS(467), 1, anon_sym_LBRACE, ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, + anon_sym_CARET, ACTIONS(599), 1, - anon_sym_RPAREN, - STATE(615), 1, - sym_expression, - STATE(617), 1, + anon_sym_RBRACK, + STATE(186), 1, + aux_sym_list_repeat1, + STATE(244), 1, sym_function_call, - STATE(692), 1, - aux_sym_function_repeat1, - STATE(783), 1, - sym__function_expression_kind, - STATE(824), 1, + STATE(271), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - ACTIONS(475), 2, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(487), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(639), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18075,58 +18024,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16737] = 21, + [16628] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(457), 1, - sym_identifier, - ACTIONS(459), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, ACTIONS(601), 1, anon_sym_RPAREN, - STATE(615), 1, - sym_expression, - STATE(617), 1, + STATE(182), 1, + aux_sym__expression_list, + STATE(244), 1, sym_function_call, - STATE(714), 1, - aux_sym_function_repeat1, - STATE(783), 1, - sym__function_expression_kind, - STATE(824), 1, + STATE(269), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - ACTIONS(475), 2, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(487), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(636), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18135,58 +18084,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16818] = 21, + [16709] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, ACTIONS(603), 1, anon_sym_RBRACK, - STATE(163), 1, + STATE(181), 1, aux_sym_list_repeat1, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(260), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18195,58 +18144,178 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16899] = 21, + [16790] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, ACTIONS(605), 1, anon_sym_RPAREN, + STATE(173), 1, + aux_sym__expression_list, + STATE(244), 1, + sym_function_call, + STATE(269), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16871] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(517), 1, + sym_identifier, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(607), 1, + anon_sym_RPAREN, + STATE(611), 1, + sym_function_call, + STATE(629), 1, + sym_expression, + STATE(717), 1, + aux_sym_function_repeat1, + STATE(780), 1, + sym__function_expression_kind, + STATE(810), 1, + sym_function_expression, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(660), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [16952] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(609), 1, + anon_sym_RPAREN, STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18255,58 +18324,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [16980] = 21, + [17033] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, + ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(607), 1, + ACTIONS(469), 1, + anon_sym_CARET, + ACTIONS(611), 1, anon_sym_RBRACK, - STATE(170), 1, + STATE(171), 1, aux_sym_list_repeat1, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(260), 1, + STATE(271), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18315,58 +18384,58 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17061] = 21, + [17114] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, + ACTIONS(233), 1, sym_range, - ACTIONS(197), 1, + ACTIONS(235), 1, sym_integer, - ACTIONS(203), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_CARET, - ACTIONS(609), 1, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(613), 1, anon_sym_RPAREN, - STATE(192), 1, + STATE(184), 1, aux_sym__expression_list, - STATE(258), 1, + STATE(244), 1, sym_function_call, - STATE(261), 1, + STATE(269), 1, sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, + STATE(801), 1, sym_index_expression, - STATE(833), 1, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18375,7 +18444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17142] = 8, + [17195] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -18384,7 +18453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(319), 1, anon_sym_COLON, - STATE(57), 1, + STATE(47), 1, sym_assignment_operator, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -18421,14 +18490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17196] = 6, + [17249] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, ACTIONS(265), 1, anon_sym_COLON, - ACTIONS(453), 1, + ACTIONS(457), 1, anon_sym_COLON_COLON, ACTIONS(257), 14, anon_sym_as, @@ -18465,19 +18534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17246] = 5, - ACTIONS(353), 1, + [17299] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(359), 2, + ACTIONS(369), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(611), 2, + ACTIONS(615), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(197), 2, + STATE(221), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(361), 29, + ACTIONS(371), 29, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -18507,54 +18576,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17293] = 19, + [17346] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(523), 1, anon_sym_CARET, - ACTIONS(620), 1, + ACTIONS(525), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(529), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(531), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(537), 1, anon_sym_LBRACK, - STATE(439), 1, + ACTIONS(617), 1, + sym_identifier, + STATE(584), 1, sym_expression, - STATE(565), 1, + STATE(595), 1, sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, + STATE(810), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(630), 2, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(479), 2, + STATE(579), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(614), 5, + STATE(616), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(455), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -18563,7 +18632,1308 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17368] = 3, + [17421] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_expression, + STATE(127), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(114), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(138), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17496] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + ACTIONS(623), 1, + anon_sym_CARET, + STATE(543), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17571] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_CARET, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LBRACE, + STATE(113), 1, + sym_expression, + STATE(127), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(114), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(138), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17646] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, + aux_sym_command_argument_token2, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(441), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17721] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + ACTIONS(623), 1, + anon_sym_CARET, + STATE(592), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17796] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, + aux_sym_command_argument_token2, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(416), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17871] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, + STATE(244), 1, + sym_function_call, + STATE(262), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [17946] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(469), 1, + anon_sym_CARET, + STATE(244), 1, + sym_function_call, + STATE(270), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18021] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + ACTIONS(623), 1, + anon_sym_CARET, + STATE(595), 1, + sym_function_call, + STATE(596), 1, + sym_expression, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18096] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_CARET, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_function_call, + STATE(450), 1, + sym_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(410), 2, + sym_value, + sym_index, + ACTIONS(201), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(462), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(379), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18171] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(257), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 19, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18218] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_CARET, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_function_call, + STATE(449), 1, + sym_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(410), 2, + sym_value, + sym_index, + ACTIONS(201), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(462), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(379), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18293] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, + ACTIONS(465), 1, + anon_sym_CARET, + ACTIONS(467), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_function_call, + STATE(266), 1, + sym_expression, + STATE(801), 1, + sym_index_expression, + STATE(808), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(246), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18368] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(247), 1, + anon_sym_CARET, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(399), 1, + sym_expression, + STATE(437), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(410), 2, + sym_value, + sym_index, + ACTIONS(201), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(462), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(379), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18443] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(191), 1, + aux_sym_command_argument_token2, + ACTIONS(197), 1, + sym_range, + ACTIONS(199), 1, + sym_integer, + ACTIONS(205), 1, + anon_sym_LBRACK, + ACTIONS(247), 1, + anon_sym_CARET, + ACTIONS(645), 1, + sym_identifier, + ACTIONS(647), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_expression, + STATE(437), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(824), 1, + sym_function_expression, + STATE(838), 1, + sym_index_expression, + ACTIONS(203), 2, + anon_sym_true, + anon_sym_false, + STATE(410), 2, + sym_value, + sym_index, + ACTIONS(201), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(462), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(379), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18518] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(297), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18563] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + STATE(595), 1, + sym_function_call, + STATE(598), 1, + sym_expression, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(579), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18638] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, + aux_sym_command_argument_token2, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(453), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18713] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + STATE(578), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(579), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18788] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + STATE(550), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(579), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18863] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, + aux_sym_command_argument_token2, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(442), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [18938] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(351), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(649), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(221), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18985] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(652), 1, + sym_identifier, + STATE(550), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(579), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19060] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + ACTIONS(623), 1, + anon_sym_CARET, + STATE(575), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(528), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19135] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(377), 15, @@ -18603,54 +19973,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17411] = 19, + [19178] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(614), 1, + ACTIONS(625), 1, sym_identifier, - ACTIONS(616), 1, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(629), 1, anon_sym_CARET, - ACTIONS(620), 1, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, + ACTIONS(633), 1, anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(635), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(637), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(643), 1, anon_sym_LBRACK, - STATE(445), 1, + STATE(436), 1, sym_expression, - STATE(565), 1, + STATE(573), 1, sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, + STATE(807), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(630), 2, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, anon_sym_true, anon_sym_false, STATE(479), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(639), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(614), 5, + STATE(622), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(455), 8, + STATE(484), 8, sym_float, sym_string, sym_boolean, @@ -18659,54 +20029,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17486] = 19, + [19253] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(459), 1, + ACTIONS(225), 1, anon_sym_LPAREN, - ACTIONS(463), 1, + ACTIONS(227), 1, anon_sym_CARET, - ACTIONS(465), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - STATE(543), 1, - sym_expression, - STATE(589), 1, + STATE(244), 1, sym_function_call, - STATE(824), 1, + STATE(263), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(475), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(574), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18715,166 +20085,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17561] = 19, + [19328] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, - anon_sym_LPAREN, ACTIONS(225), 1, - anon_sym_CARET, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(636), 1, - sym_identifier, - ACTIONS(638), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_expression, - STATE(446), 1, - sym_function_call, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, - sym_index_expression, - ACTIONS(237), 2, - anon_sym_true, - anon_sym_false, - STATE(397), 2, - sym_value, - sym_index, - ACTIONS(235), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(454), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(371), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17636] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_CARET, ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(636), 1, - sym_identifier, - ACTIONS(638), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_expression, - STATE(446), 1, - sym_function_call, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, - sym_index_expression, - ACTIONS(237), 2, - anon_sym_true, - anon_sym_false, - STATE(397), 2, - sym_value, - sym_index, - ACTIONS(235), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(454), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(371), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17711] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, anon_sym_CARET, - ACTIONS(465), 1, + ACTIONS(229), 1, aux_sym_command_argument_token2, + ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(461), 1, + sym_identifier, ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - STATE(576), 1, - sym_expression, - STATE(589), 1, + STATE(244), 1, sym_function_call, - STATE(824), 1, + STATE(264), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(475), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(574), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -18883,166 +20141,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [17786] = 19, + [19403] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(640), 1, + ACTIONS(625), 1, sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - STATE(122), 1, - sym_expression, - STATE(128), 1, - sym_function_call, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(135), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17861] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(187), 1, + ACTIONS(629), 1, anon_sym_CARET, - ACTIONS(189), 1, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, + ACTIONS(633), 1, anon_sym_LBRACE, - STATE(258), 1, - sym_function_call, - STATE(262), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [17936] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_CARET, - ACTIONS(620), 1, - aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(635), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(637), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(643), 1, anon_sym_LBRACK, - STATE(414), 1, + STATE(439), 1, sym_expression, - STATE(565), 1, + STATE(573), 1, sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, + STATE(807), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(630), 2, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, anon_sym_true, anon_sym_false, STATE(479), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(639), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(614), 5, + STATE(622), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(455), 8, + STATE(484), 8, sym_float, sym_string, sym_boolean, @@ -19051,7 +20197,49 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18011] = 3, + [19478] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(615), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(198), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(365), 29, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [19525] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(381), 15, @@ -19091,320 +20279,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18054] = 19, + [19568] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(523), 1, anon_sym_CARET, - ACTIONS(620), 1, + ACTIONS(525), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(529), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(531), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(537), 1, anon_sym_LBRACK, - STATE(528), 1, + ACTIONS(617), 1, + sym_identifier, + STATE(560), 1, sym_expression, - STATE(565), 1, - sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(630), 2, - anon_sym_true, - anon_sym_false, - STATE(479), 2, - sym_value, - sym_index, - ACTIONS(628), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(614), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(455), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18129] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(644), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(236), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 29, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [18176] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_CARET, - ACTIONS(620), 1, - aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, - sym_range, - ACTIONS(626), 1, - sym_integer, - ACTIONS(632), 1, - anon_sym_LBRACK, - STATE(411), 1, - sym_expression, - STATE(565), 1, - sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(630), 2, - anon_sym_true, - anon_sym_false, - STATE(479), 2, - sym_value, - sym_index, - ACTIONS(628), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(614), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(455), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18251] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - STATE(575), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(574), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18326] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_CARET, - ACTIONS(620), 1, - aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, - sym_range, - ACTIONS(626), 1, - sym_integer, - ACTIONS(632), 1, - anon_sym_LBRACK, - STATE(410), 1, - sym_expression, - STATE(565), 1, - sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(630), 2, - anon_sym_true, - anon_sym_false, - STATE(479), 2, - sym_value, - sym_index, - ACTIONS(628), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(614), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(455), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18401] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - ACTIONS(646), 1, - anon_sym_CARET, - STATE(589), 1, - sym_function_call, STATE(595), 1, - sym_expression, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, + sym_function_call, + STATE(810), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(475), 2, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(487), 2, + STATE(579), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, + STATE(616), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -19413,7 +20335,119 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18476] = 19, + [19643] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(523), 1, + anon_sym_CARET, + ACTIONS(525), 1, + aux_sym_command_argument_token2, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + STATE(546), 1, + sym_expression, + STATE(595), 1, + sym_function_call, + STATE(810), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, + anon_sym_true, + anon_sym_false, + STATE(579), 2, + sym_value, + sym_index, + ACTIONS(533), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(616), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(532), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19718] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, + aux_sym_command_argument_token2, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, + sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(420), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [19793] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(9), 1, @@ -19428,24 +20462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, anon_sym_CARET, - ACTIONS(640), 1, + ACTIONS(619), 1, sym_identifier, - ACTIONS(642), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(124), 1, sym_expression, - STATE(128), 1, + STATE(127), 1, sym_function_call, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(839), 1, + STATE(812), 1, sym_function_expression, - STATE(840), 1, + STATE(848), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(119), 2, + STATE(114), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -19454,13 +20488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(135), 5, + STATE(138), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -19469,54 +20503,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18551] = 19, + [19868] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(187), 1, + ACTIONS(523), 1, anon_sym_CARET, - ACTIONS(189), 1, + ACTIONS(525), 1, aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - STATE(258), 1, - sym_function_call, - STATE(266), 1, + ACTIONS(529), 1, + sym_range, + ACTIONS(531), 1, + sym_integer, + ACTIONS(537), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + sym_identifier, + STATE(586), 1, sym_expression, - STATE(796), 1, + STATE(595), 1, + sym_function_call, + STATE(810), 1, sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(201), 2, + STATE(851), 1, + sym_index_expression, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(227), 2, + STATE(579), 2, sym_value, sym_index, - ACTIONS(199), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(249), 5, + STATE(616), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(155), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -19525,110 +20559,152 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18626] = 19, + [19943] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(223), 1, + ACTIONS(625), 1, + sym_identifier, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(227), 1, + ACTIONS(629), 1, + anon_sym_CARET, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(231), 1, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(635), 1, sym_range, + ACTIONS(637), 1, + sym_integer, + ACTIONS(643), 1, + anon_sym_LBRACK, + STATE(469), 1, + sym_expression, + STATE(573), 1, + sym_function_call, + STATE(807), 1, + sym_function_expression, + STATE(811), 1, + sym__function_expression_kind, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, + anon_sym_true, + anon_sym_false, + STATE(479), 2, + sym_value, + sym_index, + ACTIONS(639), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(622), 5, + sym__expression_kind, + sym_as, + sym_command, + sym_math, + sym_logic, + STATE(484), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [20018] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(654), 1, + anon_sym_LT, + STATE(250), 1, + sym_type_arguments, + ACTIONS(419), 13, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(417), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20065] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(225), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + aux_sym_command_argument_token2, ACTIONS(233), 1, + sym_range, + ACTIONS(235), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(241), 1, anon_sym_LBRACK, - ACTIONS(245), 1, - anon_sym_CARET, - ACTIONS(636), 1, + ACTIONS(461), 1, sym_identifier, - ACTIONS(638), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_expression, - STATE(446), 1, - sym_function_call, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, - sym_index_expression, - ACTIONS(237), 2, - anon_sym_true, - anon_sym_false, - STATE(397), 2, - sym_value, - sym_index, - ACTIONS(235), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(454), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(371), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18701] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, ACTIONS(465), 1, - aux_sym_command_argument_token2, + anon_sym_CARET, ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(648), 1, - sym_identifier, - STATE(569), 1, - sym_expression, - STATE(589), 1, + STATE(244), 1, sym_function_call, - STATE(824), 1, + STATE(261), 1, + sym_expression, + STATE(801), 1, sym_index_expression, - STATE(832), 1, + STATE(808), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(475), 2, + ACTIONS(239), 2, anon_sym_true, anon_sym_false, - STATE(574), 2, + STATE(210), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(237), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, + STATE(246), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(151), 8, sym_float, sym_string, sym_boolean, @@ -19637,54 +20713,95 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18776] = 19, + [20140] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(656), 1, + anon_sym_DASH_GT, + ACTIONS(413), 14, + anon_sym_as, sym_identifier, - STATE(553), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(574), 2, - sym_value, - sym_index, - ACTIONS(473), 5, + sym_integer, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(411), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20185] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_CARET, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LBRACE, + STATE(121), 1, + sym_expression, + STATE(127), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(848), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(114), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(138), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(471), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -19693,110 +20810,54 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [18851] = 19, + [20260] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, + ACTIONS(625), 1, sym_identifier, - STATE(566), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(574), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [18926] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(629), 1, anon_sym_CARET, - ACTIONS(620), 1, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, + ACTIONS(633), 1, anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(635), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(637), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(643), 1, anon_sym_LBRACK, - STATE(523), 1, + STATE(459), 1, sym_expression, - STATE(565), 1, + STATE(573), 1, sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, + STATE(807), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(630), 2, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, anon_sym_true, anon_sym_false, STATE(479), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(639), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(614), 5, + STATE(622), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(455), 8, + STATE(484), 8, sym_float, sym_string, sym_boolean, @@ -19805,166 +20866,95 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19001] = 19, + [20335] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(658), 1, + anon_sym_DASH_GT, + ACTIONS(407), 14, + anon_sym_as, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_function_call, - STATE(268), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, anon_sym_true, anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19076] = 19, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20380] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, + ACTIONS(625), 1, sym_identifier, - ACTIONS(481), 1, - anon_sym_CARET, - ACTIONS(483), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_function_call, - STATE(270), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19151] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(629), 1, anon_sym_CARET, - ACTIONS(620), 1, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, + ACTIONS(633), 1, anon_sym_LBRACE, - ACTIONS(624), 1, + ACTIONS(635), 1, sym_range, - ACTIONS(626), 1, + ACTIONS(637), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(643), 1, anon_sym_LBRACK, - STATE(449), 1, + STATE(421), 1, sym_expression, - STATE(565), 1, + STATE(573), 1, sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, + STATE(807), 1, sym_function_expression, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - ACTIONS(630), 2, + STATE(842), 1, + sym_index_expression, + ACTIONS(641), 2, anon_sym_true, anon_sym_false, STATE(479), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(639), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(614), 5, + STATE(622), 5, sym__expression_kind, sym_as, sym_command, sym_math, sym_logic, - STATE(455), 8, + STATE(484), 8, sym_float, sym_string, sym_boolean, @@ -19973,125 +20963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [19226] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_CARET, - ACTIONS(620), 1, - aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, - sym_range, - ACTIONS(626), 1, - sym_integer, - ACTIONS(632), 1, - anon_sym_LBRACK, - STATE(442), 1, - sym_expression, - STATE(565), 1, - sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(630), 2, - anon_sym_true, - anon_sym_false, - STATE(479), 2, - sym_value, - sym_index, - ACTIONS(628), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(614), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(455), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19301] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - aux_sym_command_argument_token2, - ACTIONS(231), 1, - sym_range, - ACTIONS(233), 1, - sym_integer, - ACTIONS(239), 1, - anon_sym_LBRACK, - ACTIONS(245), 1, - anon_sym_CARET, - ACTIONS(636), 1, - sym_identifier, - ACTIONS(638), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_function_call, - STATE(447), 1, - sym_expression, - STATE(822), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(852), 1, - sym_index_expression, - ACTIONS(237), 2, - anon_sym_true, - anon_sym_false, - STATE(397), 2, - sym_value, - sym_index, - ACTIONS(235), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(454), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(371), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19376] = 5, + [20455] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(319), 1, - anon_sym_COLON, ACTIONS(257), 14, anon_sym_as, sym_identifier, @@ -20127,443 +21003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19423] = 19, - ACTIONS(3), 1, + [20499] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, + ACTIONS(363), 2, anon_sym_CARET, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_expression, - STATE(128), 1, - sym_function_call, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(135), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19498] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(614), 1, - sym_identifier, - ACTIONS(616), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_CARET, - ACTIONS(620), 1, - aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(624), 1, - sym_range, - ACTIONS(626), 1, - sym_integer, - ACTIONS(632), 1, - anon_sym_LBRACK, - STATE(432), 1, - sym_expression, - STATE(565), 1, - sym_function_call, - STATE(800), 1, - sym_index_expression, - STATE(805), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(630), 2, - anon_sym_true, - anon_sym_false, - STATE(479), 2, - sym_value, - sym_index, - ACTIONS(628), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(614), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(455), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19573] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(650), 1, - anon_sym_DASH_GT, - ACTIONS(403), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19618] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(317), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [19663] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - STATE(585), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(574), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19738] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, - STATE(258), 1, - sym_function_call, - STATE(267), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19813] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - aux_sym_command_argument_token2, - ACTIONS(195), 1, - sym_range, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(479), 1, - sym_identifier, - ACTIONS(483), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_CARET, - STATE(258), 1, - sym_function_call, - STATE(263), 1, - sym_expression, - STATE(796), 1, - sym_function_expression, - STATE(819), 1, - sym_index_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(227), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(249), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19888] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - ACTIONS(646), 1, - anon_sym_CARET, - STATE(584), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(487), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [19963] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(644), 2, + ACTIONS(660), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(197), 2, + STATE(260), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 29, + ACTIONS(365), 28, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, sym_range, sym_integer, @@ -20575,6 +21031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -20587,180 +21044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20010] = 19, + [20545] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(463), 1, - anon_sym_CARET, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - STATE(569), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(574), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [20085] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - ACTIONS(646), 1, - anon_sym_CARET, - STATE(555), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(487), 2, - sym_value, - sym_index, - ACTIONS(473), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [20160] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - anon_sym_CARET, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(640), 1, - sym_identifier, - ACTIONS(642), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_expression, - STATE(128), 1, - sym_function_call, - STATE(833), 1, - sym__function_expression_kind, - STATE(839), 1, - sym_function_expression, - STATE(840), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(119), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(135), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [20235] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(652), 1, - anon_sym_DASH_GT, - ACTIONS(413), 14, + ACTIONS(451), 14, anon_sym_as, sym_identifier, sym_integer, @@ -20775,7 +21062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(411), 20, + ACTIONS(449), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -20796,63 +21083,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20280] = 19, - ACTIONS(3), 1, + [20587] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(459), 1, - anon_sym_LPAREN, - ACTIONS(465), 1, - aux_sym_command_argument_token2, - ACTIONS(467), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - sym_range, - ACTIONS(471), 1, - sym_integer, - ACTIONS(477), 1, - anon_sym_LBRACK, - ACTIONS(634), 1, - sym_identifier, - ACTIONS(646), 1, + ACTIONS(363), 2, anon_sym_CARET, - STATE(583), 1, - sym_expression, - STATE(589), 1, - sym_function_call, - STATE(824), 1, - sym_index_expression, - STATE(832), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - ACTIONS(475), 2, - anon_sym_true, - anon_sym_false, - STATE(487), 2, - sym_value, - sym_index, - ACTIONS(473), 5, + anon_sym_PIPE_PIPE, + ACTIONS(662), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(248), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(365), 28, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(611), 5, - sym__expression_kind, - sym_as, - sym_command, - sym_math, - sym_logic, - STATE(471), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [20355] = 3, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20633] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(662), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(255), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 28, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20679] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(413), 14, @@ -20891,10 +21204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20397] = 3, + [20721] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(439), 14, + ACTIONS(407), 14, anon_sym_as, sym_identifier, sym_integer, @@ -20909,7 +21222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(437), 20, + ACTIONS(405), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -20930,10 +21243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20439] = 3, + [20763] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(403), 14, + ACTIONS(429), 14, anon_sym_as, sym_identifier, sym_integer, @@ -20948,7 +21261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(401), 20, + ACTIONS(427), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -20969,103 +21282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20481] = 5, - ACTIONS(353), 1, + [20805] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(355), 2, + ACTIONS(351), 2, anon_sym_CARET, anon_sym_PIPE_PIPE, - ACTIONS(654), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(247), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 28, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20527] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(656), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(246), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20573] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(654), 2, + ACTIONS(664), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(252), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 28, + ACTIONS(353), 28, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_LBRACE, @@ -21080,6 +21310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -21092,12 +21323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20619] = 4, + [20851] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(659), 1, - anon_sym_LT, - ACTIONS(423), 13, + ACTIONS(447), 14, anon_sym_as, sym_identifier, sym_integer, @@ -21111,7 +21340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, - ACTIONS(421), 20, + anon_sym_LT, + ACTIONS(445), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -21132,10 +21362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20663] = 3, + [20893] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(449), 14, + ACTIONS(437), 14, anon_sym_as, sym_identifier, sym_integer, @@ -21150,7 +21380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(447), 20, + ACTIONS(435), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -21171,10 +21401,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20705] = 3, + [20935] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(351), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(667), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(255), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 28, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [20981] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(431), 14, + ACTIONS(455), 14, anon_sym_as, sym_identifier, sym_integer, @@ -21189,7 +21460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(429), 20, + ACTIONS(453), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -21210,9 +21481,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20747] = 3, + [21023] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(670), 1, + anon_sym_LT, + ACTIONS(419), 13, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(417), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21067] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(419), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21109] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(441), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(439), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21151] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(660), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(252), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 28, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21197] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(212), 1, + sym_logic_operator, + STATE(238), 1, + sym_math_operator, ACTIONS(423), 14, anon_sym_as, sym_identifier, @@ -21228,18 +21662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(421), 20, - anon_sym_SEMI, + ACTIONS(425), 17, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, - anon_sym_RBRACE, sym_range, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -21249,425 +21680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20789] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(661), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(252), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 28, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20835] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(443), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(441), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20877] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(664), 1, - anon_sym_LT, - ACTIONS(423), 13, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - ACTIONS(421), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20921] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(666), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(246), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(369), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [20967] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(666), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(255), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 28, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21013] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(435), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(433), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21055] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(257), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 19, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21099] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(347), 14, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_elseif, - anon_sym_DASH_GT, - anon_sym_asyncfor, - ACTIONS(349), 19, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [21140] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(672), 1, - anon_sym_COMMA, - ACTIONS(674), 1, - anon_sym_as, - STATE(222), 1, - sym_logic_operator, - STATE(223), 1, - sym_math_operator, - ACTIONS(389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(670), 7, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(668), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [21197] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(674), 1, - anon_sym_as, - ACTIONS(680), 1, - anon_sym_COMMA, - STATE(233), 1, - sym_math_operator, - STATE(234), 1, - sym_logic_operator, - ACTIONS(389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(678), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(676), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [21254] = 5, + [21242] = 5, ACTIONS(3), 1, sym__comment, STATE(206), 1, sym_logic_operator, - STATE(216), 1, + STATE(207), 1, sym_math_operator, - ACTIONS(407), 14, + ACTIONS(385), 14, anon_sym_as, sym_identifier, sym_integer, @@ -21682,7 +21702,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(409), 17, + ACTIONS(383), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21287] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(226), 1, + sym_math_operator, + STATE(227), 1, + sym_logic_operator, + ACTIONS(423), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -21700,14 +21760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21299] = 5, + [21332] = 5, ACTIONS(3), 1, sym__comment, - STATE(233), 1, + STATE(226), 1, sym_math_operator, - STATE(234), 1, + STATE(227), 1, sym_logic_operator, - ACTIONS(407), 14, + ACTIONS(385), 14, anon_sym_as, sym_identifier, sym_integer, @@ -21722,7 +21782,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(409), 17, + ACTIONS(383), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21377] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(672), 1, + anon_sym_as, + STATE(226), 1, + sym_math_operator, + STATE(227), 1, + sym_logic_operator, + ACTIONS(393), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(395), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(389), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [21432] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(212), 1, + sym_logic_operator, + STATE(238), 1, + sym_math_operator, + ACTIONS(385), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(383), 17, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -21740,19 +21885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21344] = 7, + [21477] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(686), 1, + ACTIONS(678), 1, anon_sym_elseif, - ACTIONS(688), 1, + ACTIONS(680), 1, anon_sym_else, - STATE(336), 1, + STATE(337), 1, sym_else, STATE(273), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(682), 10, + ACTIONS(674), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -21763,7 +21908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(684), 18, + ACTIONS(676), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -21782,260 +21927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [21393] = 7, - ACTIONS(3), 1, + [21526] = 3, + ACTIONS(355), 1, sym__comment, - ACTIONS(686), 1, - anon_sym_elseif, - ACTIONS(688), 1, - anon_sym_else, - STATE(324), 1, - sym_else, - STATE(264), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(690), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(692), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [21442] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(206), 1, - sym_logic_operator, - STATE(216), 1, - sym_math_operator, - ACTIONS(419), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21487] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(233), 1, - sym_math_operator, - STATE(234), 1, - sym_logic_operator, - ACTIONS(419), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 17, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21532] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(222), 1, - sym_logic_operator, - STATE(223), 1, - sym_math_operator, - ACTIONS(407), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(409), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21577] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(674), 1, - anon_sym_as, - STATE(206), 1, - sym_logic_operator, - STATE(216), 1, - sym_math_operator, - ACTIONS(389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(391), 2, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(383), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(385), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [21632] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(222), 1, - sym_logic_operator, - STATE(223), 1, - sym_math_operator, - ACTIONS(419), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21677] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 2, + ACTIONS(401), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(399), 31, + ACTIONS(403), 31, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -22067,13 +21965,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21718] = 3, - ACTIONS(353), 1, + [21567] = 11, + ACTIONS(3), 1, sym__comment, - ACTIONS(397), 2, + ACTIONS(672), 1, + anon_sym_as, + ACTIONS(686), 1, + anon_sym_COMMA, + STATE(212), 1, + sym_logic_operator, + STATE(238), 1, + sym_math_operator, + ACTIONS(393), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(684), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(682), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [21624] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(206), 1, + sym_logic_operator, + STATE(207), 1, + sym_math_operator, + ACTIONS(423), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21669] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(672), 1, + anon_sym_as, + ACTIONS(692), 1, + anon_sym_COMMA, + STATE(206), 1, + sym_logic_operator, + STATE(207), 1, + sym_math_operator, + ACTIONS(393), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(690), 7, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(688), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [21726] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(343), 14, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_elseif, + anon_sym_DASH_GT, + anon_sym_asyncfor, + ACTIONS(345), 19, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [21767] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(678), 1, + anon_sym_elseif, + ACTIONS(680), 1, + anon_sym_else, + STATE(340), 1, + sym_else, + STATE(275), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(694), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(696), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [21816] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, anon_sym_CARET, anon_sym_PIPE_PIPE, - ACTIONS(399), 30, + ACTIONS(403), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21856] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(702), 1, + anon_sym_elseif, + STATE(275), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(698), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(700), 19, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [21900] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(705), 1, + anon_sym_PIPE, + ACTIONS(257), 14, + anon_sym_as, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 16, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [21944] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, + anon_sym_CARET, + anon_sym_PIPE_PIPE, + ACTIONS(403), 30, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -22104,49 +22329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21758] = 5, + [21984] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(698), 1, - anon_sym_elseif, - STATE(273), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(694), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(696), 19, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [21802] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 14, + ACTIONS(349), 14, anon_sym_as, sym_identifier, sym_integer, @@ -22161,7 +22347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(343), 18, + ACTIONS(347), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -22180,10 +22366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21842] = 4, + [22024] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(701), 1, + ACTIONS(705), 1, anon_sym_PIPE, ACTIONS(257), 14, anon_sym_as, @@ -22218,479 +22404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21884] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 2, - anon_sym_CARET, - anon_sym_PIPE_PIPE, - ACTIONS(399), 30, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21924] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_PIPE, - ACTIONS(257), 14, - anon_sym_as, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 16, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [21968] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(703), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(290), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(355), 3, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(351), 24, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22011] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - anon_sym_CARET, - ACTIONS(711), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_pipe, - STATE(674), 1, - sym_function_call, - STATE(681), 1, - sym_command, - STATE(827), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22082] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(713), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(281), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(355), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(351), 23, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22125] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(713), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(282), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(371), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(369), 23, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22168] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(715), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(282), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(359), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(361), 23, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22211] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(718), 1, - anon_sym_CARET, - STATE(323), 1, - sym_pipe, - STATE(325), 1, - sym_command, - STATE(327), 1, - sym_function_call, - STATE(814), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22282] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(720), 1, - anon_sym_CARET, - STATE(438), 1, - sym_command, - STATE(444), 1, - sym_function_call, - STATE(533), 1, - sym_pipe, - STATE(829), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22353] = 19, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(722), 1, - anon_sym_CARET, - STATE(533), 1, - sym_pipe, - STATE(673), 1, - sym_function_call, - STATE(675), 1, - sym_command, - STATE(827), 1, - sym_function_expression, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [22424] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(339), 13, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_asyncfor, - ACTIONS(341), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22463] = 3, + [22066] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(335), 13, @@ -22726,123 +22440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [22502] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(728), 1, - anon_sym_LBRACE, - ACTIONS(730), 1, - anon_sym_LT, - STATE(305), 1, - sym_type_arguments, - STATE(310), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(724), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(726), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22549] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(732), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(289), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(359), 3, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(361), 24, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22592] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(703), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(289), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(371), 3, - anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(369), 24, - anon_sym_return, - anon_sym_break, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [22635] = 19, + [22105] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -22853,30 +22451,30 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(705), 1, - sym_identifier, ACTIONS(707), 1, + sym_identifier, + ACTIONS(709), 1, anon_sym_LPAREN, ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(735), 1, anon_sym_CARET, - STATE(314), 1, - sym_command, - STATE(315), 1, - sym_function_call, - STATE(323), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + STATE(320), 1, sym_pipe, - STATE(814), 1, - sym_function_expression, - STATE(833), 1, + STATE(324), 1, + sym_command, + STATE(339), 1, + sym_function_call, + STATE(811), 1, sym__function_expression_kind, - STATE(834), 1, + STATE(816), 1, + sym_function_expression, + STATE(845), 1, sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(748), 2, + STATE(753), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -22885,7 +22483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -22894,22 +22492,28 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [22706] = 3, + [22176] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(737), 11, + ACTIONS(719), 1, + anon_sym_LBRACE, + ACTIONS(721), 1, + anon_sym_LT, + STATE(310), 1, + sym_type_arguments, + STATE(313), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(715), 9, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, - anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, - anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(739), 19, + ACTIONS(717), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -22923,28 +22527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [22744] = 3, + [22223] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(335), 11, + ACTIONS(339), 13, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, anon_sym_RBRACE, sym_range, anon_sym_LBRACK, - anon_sym_elseif, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_asyncfor, - ACTIONS(337), 19, + ACTIONS(341), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -22958,13 +22563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [22782] = 18, + [22262] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -22975,28 +22579,30 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(599), 1, - anon_sym_RPAREN, ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, sym_identifier, - STATE(692), 1, - aux_sym_function_repeat1, - STATE(788), 1, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(723), 1, + anon_sym_CARET, + STATE(475), 1, + sym_pipe, + STATE(676), 1, sym_function_call, - STATE(833), 1, + STATE(682), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, + STATE(830), 1, sym_function_expression, + STATE(845), 1, + sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(748), 2, + STATE(753), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -23005,7 +22611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -23014,7 +22620,45 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [22850] = 18, + [22333] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(725), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(294), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(363), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(365), 23, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22376] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -23025,28 +22669,30 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(601), 1, - anon_sym_RPAREN, ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, sym_identifier, - STATE(714), 1, - aux_sym_function_repeat1, - STATE(769), 1, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(727), 1, + anon_sym_CARET, + STATE(475), 1, + sym_pipe, + STATE(683), 1, sym_function_call, - STATE(833), 1, + STATE(693), 1, + sym_command, + STATE(811), 1, sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, + STATE(830), 1, sym_function_expression, + STATE(845), 1, + sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(748), 2, + STATE(753), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -23055,7 +22701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -23064,7 +22710,81 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [22918] = 18, + [22447] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(729), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(293), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(363), 3, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(365), 24, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22490] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(435), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_GT, + ACTIONS(437), 19, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [22529] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -23075,28 +22795,30 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(549), 1, - anon_sym_RPAREN, ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, sym_identifier, - STATE(701), 1, - aux_sym_function_repeat1, - STATE(752), 1, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + anon_sym_CARET, + STATE(317), 1, + sym_command, + STATE(318), 1, sym_function_call, - STATE(833), 1, + STATE(320), 1, + sym_pipe, + STATE(811), 1, sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, + STATE(816), 1, sym_function_expression, + STATE(845), 1, + sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(748), 2, + STATE(753), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -23105,7 +22827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -23114,7 +22836,45 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [22986] = 18, + [22600] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(733), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(290), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(351), 3, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(353), 24, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22643] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -23125,28 +22885,244 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(591), 1, - anon_sym_RPAREN, ACTIONS(707), 1, + sym_identifier, + ACTIONS(709), 1, anon_sym_LPAREN, - ACTIONS(711), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(736), 1, + anon_sym_CARET, + STATE(444), 1, + sym_function_call, + STATE(445), 1, + sym_command, + STATE(475), 1, + sym_pipe, + STATE(811), 1, + sym__function_expression_kind, + STATE(839), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22714] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(738), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(292), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(351), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(353), 23, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22757] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(729), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(290), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(369), 3, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(371), 24, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22800] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(725), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(292), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(369), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(371), 23, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_async, + anon_sym_LBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [22843] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(551), 1, + anon_sym_RPAREN, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, anon_sym_LBRACE, ACTIONS(741), 1, sym_identifier, + STATE(702), 1, + aux_sym_function_repeat1, + STATE(791), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [22911] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + ACTIONS(743), 1, + anon_sym_RPAREN, STATE(696), 1, aux_sym_function_repeat1, - STATE(754), 1, + STATE(790), 1, sym_function_call, - STATE(833), 1, + STATE(811), 1, sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, + STATE(812), 1, sym_function_expression, + STATE(845), 1, + sym_index_expression, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(748), 2, + STATE(753), 2, sym_value, sym_index, ACTIONS(23), 5, @@ -23155,7 +23131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -23164,191 +23140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [23054] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, - sym_identifier, - ACTIONS(743), 1, - anon_sym_RPAREN, - STATE(691), 1, - aux_sym_function_repeat1, - STATE(769), 1, - sym_function_call, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, - sym_function_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23122] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(339), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(341), 19, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23160] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, - sym_identifier, - STATE(697), 1, - aux_sym_function_repeat1, - STATE(775), 1, - sym_function_call, - STATE(833), 1, - sym__function_expression_kind, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, - sym_function_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23228] = 17, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(19), 1, - sym_range, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(707), 1, - anon_sym_LPAREN, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(741), 1, - sym_identifier, - ACTIONS(743), 1, - anon_sym_RPAREN, - STATE(691), 1, - aux_sym_function_repeat1, - STATE(834), 1, - sym_index_expression, - STATE(839), 1, - sym_function_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(748), 2, - sym_value, - sym_index, - STATE(783), 2, - sym__function_expression_kind, - sym_function_call, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23294] = 3, + [22979] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(745), 11, @@ -23383,118 +23175,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [23332] = 5, + [23017] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(728), 1, - anon_sym_LBRACE, - STATE(304), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(749), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_RBRACE, + ACTIONS(19), 1, sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(751), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(607), 1, + anon_sym_RPAREN, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + STATE(717), 1, + aux_sym_function_repeat1, + STATE(783), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23373] = 5, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23085] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(757), 1, - anon_sym_LBRACE, - STATE(304), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(753), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_RBRACE, + ACTIONS(19), 1, sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(755), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(547), 1, + anon_sym_RPAREN, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + STATE(728), 1, + aux_sym_function_repeat1, + STATE(790), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23414] = 5, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23153] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(728), 1, - anon_sym_LBRACE, - STATE(303), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(760), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(762), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23455] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(379), 10, + ACTIONS(749), 11, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23504,11 +23288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_range, anon_sym_LBRACK, + anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(381), 19, + ACTIONS(751), 19, anon_sym_return, anon_sym_break, - anon_sym_PIPE, anon_sym_async, sym_identifier, sym_integer, @@ -23520,30 +23304,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [23492] = 3, - ACTIONS(353), 1, + [23191] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(397), 3, + ACTIONS(339), 11, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_CARET, - anon_sym_asyncfor, - ACTIONS(399), 26, - anon_sym_return, - anon_sym_break, anon_sym_LPAREN, - anon_sym_PIPE, - aux_sym_command_argument_token1, + anon_sym_CARET, aux_sym_command_argument_token2, - anon_sym_async, anon_sym_LBRACE, anon_sym_RBRACE, - sym_identifier, sym_range, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(341), 19, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, sym_integer, aux_sym_float_token1, anon_sym_Infinity, @@ -23552,14 +23338,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - anon_sym_LBRACK, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, anon_sym_enum, anon_sym_struct, - [23529] = 3, + [23229] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(335), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(337), 19, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23267] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + ACTIONS(743), 1, + anon_sym_RPAREN, + STATE(696), 1, + aux_sym_function_repeat1, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + STATE(780), 2, + sym__function_expression_kind, + sym_function_call, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23333] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(521), 1, + anon_sym_RPAREN, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + STATE(705), 1, + aux_sym_function_repeat1, + STATE(760), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23401] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(19), 1, + sym_range, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(559), 1, + anon_sym_RPAREN, + ACTIONS(709), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, + sym_identifier, + STATE(703), 1, + aux_sym_function_repeat1, + STATE(762), 1, + sym_function_call, + STATE(811), 1, + sym__function_expression_kind, + STATE(812), 1, + sym_function_expression, + STATE(845), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(753), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [23469] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(375), 10, @@ -23593,15 +23563,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [23566] = 3, - ACTIONS(353), 1, + [23506] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(397), 4, + ACTIONS(435), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_asyncfor, + ACTIONS(437), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23543] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 4, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_CARET, anon_sym_asyncfor, - ACTIONS(399), 25, + ACTIONS(403), 25, anon_sym_return, anon_sym_break, anon_sym_LPAREN, @@ -23627,14 +23631,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [23603] = 5, + [23580] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 3, + anon_sym_SEMI, + anon_sym_CARET, + anon_sym_asyncfor, + ACTIONS(403), 26, + anon_sym_return, + anon_sym_break, + anon_sym_LPAREN, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23617] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(728), 1, + ACTIONS(719), 1, anon_sym_LBRACE, - STATE(304), 1, + STATE(312), 1, aux_sym_enum_definition_repeat2, - ACTIONS(760), 9, + ACTIONS(753), 9, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23644,7 +23682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(762), 18, + ACTIONS(755), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -23663,56 +23701,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [23644] = 16, + [23658] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, + ACTIONS(761), 1, anon_sym_LBRACE, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, + STATE(311), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(757), 9, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(768), 1, + anon_sym_CARET, + aux_sym_command_argument_token2, anon_sym_RBRACE, - ACTIONS(770), 1, sym_range, - ACTIONS(772), 1, - anon_sym_STAR, - STATE(319), 1, - aux_sym_match_repeat1, - STATE(793), 1, - sym_match_pattern, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(820), 2, - sym_value, - sym_enum_pattern, - ACTIONS(23), 5, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(759), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [23706] = 3, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23699] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(774), 10, + ACTIONS(719), 1, + anon_sym_LBRACE, + STATE(311), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(764), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(766), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23740] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(719), 1, + anon_sym_LBRACE, + STATE(311), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(753), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(755), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23781] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(379), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(381), 19, + anon_sym_return, + anon_sym_break, + anon_sym_PIPE, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23818] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(768), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(770), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23854] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(772), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(774), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23890] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(433), 1, + anon_sym_PIPE, + ACTIONS(778), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(776), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23928] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(433), 1, + anon_sym_PIPE, + ACTIONS(778), 8, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(776), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [23968] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(780), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(782), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24004] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(778), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -23742,354 +24044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [23742] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(778), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(780), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23778] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(445), 1, - anon_sym_PIPE, - ACTIONS(784), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(782), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23816] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(445), 1, - anon_sym_PIPE, - ACTIONS(784), 8, - anon_sym_SEMI, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(782), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23856] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(786), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(788), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23892] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(794), 1, - anon_sym_SEMI, - ACTIONS(790), 9, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(792), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23930] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(796), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(798), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [23966] = 16, - ACTIONS(3), 1, - sym__comment, - ACTIONS(800), 1, - sym_identifier, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(806), 1, - aux_sym_command_argument_token2, - ACTIONS(809), 1, - anon_sym_LBRACE, - ACTIONS(812), 1, - anon_sym_RBRACE, - ACTIONS(814), 1, - sym_range, - ACTIONS(817), 1, - sym_integer, - ACTIONS(826), 1, - anon_sym_LBRACK, - ACTIONS(829), 1, - anon_sym_STAR, - STATE(319), 1, - aux_sym_match_repeat1, - STATE(793), 1, - sym_match_pattern, - ACTIONS(823), 2, - anon_sym_true, - anon_sym_false, - STATE(820), 2, - sym_value, - sym_enum_pattern, - ACTIONS(820), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24028] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(383), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(385), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [24064] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(832), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(834), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [24100] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(836), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(838), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [24136] = 3, + [24040] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(784), 10, @@ -24103,7 +24058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(782), 18, + ACTIONS(786), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24122,55 +24077,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24172] = 3, + [24076] = 16, ACTIONS(3), 1, sym__comment, - ACTIONS(682), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(13), 1, aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(684), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, + ACTIONS(21), 1, sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + sym_identifier, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(792), 1, + anon_sym_RBRACE, + ACTIONS(794), 1, + sym_range, + ACTIONS(796), 1, + anon_sym_STAR, + STATE(335), 1, + aux_sym_match_repeat1, + STATE(846), 1, + sym_match_pattern, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(805), 2, + sym_value, + sym_enum_pattern, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [24208] = 4, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24138] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(427), 1, - anon_sym_PIPE, + ACTIONS(798), 1, + anon_sym_SEMI, ACTIONS(784), 9, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(782), 18, + ACTIONS(786), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24189,10 +24157,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24246] = 3, + [24176] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(840), 10, + ACTIONS(443), 1, + anon_sym_PIPE, + ACTIONS(778), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(776), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24214] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(800), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24203,7 +24205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(842), 18, + ACTIONS(802), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24222,23 +24224,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24282] = 5, + [24250] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(427), 1, - anon_sym_PIPE, - ACTIONS(784), 8, + ACTIONS(804), 10, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, anon_sym_LBRACE, + anon_sym_RBRACE, sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(782), 18, + ACTIONS(806), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24286] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(808), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(810), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24260,7 +24293,7 @@ static const uint16_t ts_small_parse_table[] = { [24322] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(347), 10, + ACTIONS(784), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24271,7 +24304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(349), 18, + ACTIONS(786), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24293,7 +24326,7 @@ static const uint16_t ts_small_parse_table[] = { [24358] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(840), 10, + ACTIONS(812), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24304,7 +24337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(842), 18, + ACTIONS(814), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24326,7 +24359,7 @@ static const uint16_t ts_small_parse_table[] = { [24394] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(844), 10, + ACTIONS(816), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24337,7 +24370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(846), 18, + ACTIONS(818), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24356,13 +24389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24430] = 4, + [24430] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(848), 1, - anon_sym_SEMI, - ACTIONS(840), 9, + ACTIONS(387), 10, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, @@ -24371,7 +24403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(842), 18, + ACTIONS(389), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24390,10 +24422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24468] = 3, + [24466] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(850), 10, + ACTIONS(820), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24404,7 +24436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(852), 18, + ACTIONS(822), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24423,12 +24455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24504] = 3, + [24502] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(854), 10, - ts_builtin_sym_end, + ACTIONS(824), 1, anon_sym_SEMI, + ACTIONS(804), 9, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, @@ -24437,7 +24470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(856), 18, + ACTIONS(806), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24459,7 +24492,7 @@ static const uint16_t ts_small_parse_table[] = { [24540] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(858), 10, + ACTIONS(826), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24470,7 +24503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(860), 18, + ACTIONS(828), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24489,7 +24522,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24576] = 3, + [24576] = 16, + ACTIONS(3), 1, + sym__comment, + ACTIONS(830), 1, + sym_identifier, + ACTIONS(833), 1, + anon_sym_LPAREN, + ACTIONS(836), 1, + aux_sym_command_argument_token2, + ACTIONS(839), 1, + anon_sym_LBRACE, + ACTIONS(842), 1, + anon_sym_RBRACE, + ACTIONS(844), 1, + sym_range, + ACTIONS(847), 1, + sym_integer, + ACTIONS(856), 1, + anon_sym_LBRACK, + ACTIONS(859), 1, + anon_sym_STAR, + STATE(335), 1, + aux_sym_match_repeat1, + STATE(846), 1, + sym_match_pattern, + ACTIONS(853), 2, + anon_sym_true, + anon_sym_false, + STATE(805), 2, + sym_value, + sym_enum_pattern, + ACTIONS(850), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [24638] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(343), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(345), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24674] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(694), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(696), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24710] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(862), 10, @@ -24522,7 +24667,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24612] = 3, + [24746] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(443), 1, + anon_sym_PIPE, + ACTIONS(778), 8, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(776), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [24786] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(866), 10, @@ -24555,40 +24735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24648] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(790), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(792), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [24684] = 3, + [24822] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(870), 10, @@ -24621,56 +24768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24720] = 16, + [24858] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(766), 1, - anon_sym_LPAREN, - ACTIONS(770), 1, - sym_range, - ACTIONS(772), 1, - anon_sym_STAR, - ACTIONS(874), 1, - anon_sym_RBRACE, - STATE(319), 1, - aux_sym_match_repeat1, - STATE(793), 1, - sym_match_pattern, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(820), 2, - sym_value, - sym_enum_pattern, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [24782] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(876), 10, + ACTIONS(874), 10, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -24681,7 +24782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(878), 18, + ACTIONS(876), 18, anon_sym_return, anon_sym_break, anon_sym_async, @@ -24700,7 +24801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_enum, anon_sym_struct, - [24818] = 15, + [24894] = 16, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -24709,24 +24810,26 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(711), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(788), 1, sym_identifier, - ACTIONS(766), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, sym_range, - ACTIONS(772), 1, + ACTIONS(796), 1, anon_sym_STAR, - STATE(311), 1, + ACTIONS(878), 1, + anon_sym_RBRACE, + STATE(335), 1, aux_sym_match_repeat1, - STATE(793), 1, + STATE(846), 1, sym_match_pattern, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(820), 2, + STATE(805), 2, sym_value, sym_enum_pattern, ACTIONS(23), 5, @@ -24735,7 +24838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -24744,7 +24847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [24877] = 15, + [24956] = 15, ACTIONS(3), 1, sym__comment, ACTIONS(13), 1, @@ -24753,24 +24856,24 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(711), 1, + ACTIONS(713), 1, anon_sym_LBRACE, - ACTIONS(764), 1, + ACTIONS(788), 1, sym_identifier, - ACTIONS(766), 1, + ACTIONS(790), 1, anon_sym_LPAREN, - ACTIONS(770), 1, + ACTIONS(794), 1, sym_range, - ACTIONS(772), 1, + ACTIONS(796), 1, anon_sym_STAR, - STATE(339), 1, + STATE(343), 1, aux_sym_match_repeat1, - STATE(793), 1, + STATE(846), 1, sym_match_pattern, ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(820), 2, + STATE(805), 2, sym_value, sym_enum_pattern, ACTIONS(23), 5, @@ -24779,7 +24882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -24788,7 +24891,51 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [24936] = 11, + [25015] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + sym_identifier, + ACTIONS(790), 1, + anon_sym_LPAREN, + ACTIONS(794), 1, + sym_range, + ACTIONS(796), 1, + anon_sym_STAR, + STATE(322), 1, + aux_sym_match_repeat1, + STATE(846), 1, + sym_match_pattern, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(805), 2, + sym_value, + sym_enum_pattern, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25074] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -24801,9 +24948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(880), 1, anon_sym_COLON_COLON, - STATE(46), 1, + STATE(52), 1, sym_assignment_operator, - STATE(682), 1, + STATE(686), 1, sym_type_specification, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -24827,16 +24974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [24986] = 13, + [25124] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(227), 1, + ACTIONS(13), 1, aux_sym_command_argument_token2, - ACTIONS(233), 1, + ACTIONS(21), 1, sym_integer, - ACTIONS(239), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(638), 1, + ACTIONS(713), 1, anon_sym_LBRACE, ACTIONS(882), 1, sym_identifier, @@ -24844,21 +24991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(886), 1, sym_range, - STATE(372), 1, + STATE(93), 1, sym_index_expression, - ACTIONS(237), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - STATE(355), 2, + STATE(94), 2, sym_value, sym_index, - ACTIONS(235), 5, + ACTIONS(23), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(371), 8, + STATE(85), 8, sym_float, sym_string, sym_boolean, @@ -24867,7 +25014,117 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [25039] = 11, + [25177] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(13), 1, + aux_sym_command_argument_token2, + ACTIONS(21), 1, + sym_integer, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(886), 1, + sym_range, + ACTIONS(888), 1, + sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN, + STATE(93), 1, + sym_index_expression, + ACTIONS(25), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 2, + sym_value, + sym_index, + ACTIONS(23), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(85), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25230] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(229), 1, + aux_sym_command_argument_token2, + ACTIONS(235), 1, + sym_integer, + ACTIONS(241), 1, + anon_sym_LBRACK, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(892), 1, + sym_identifier, + ACTIONS(894), 1, + anon_sym_LPAREN, + ACTIONS(896), 1, + sym_range, + STATE(158), 1, + sym_index_expression, + ACTIONS(239), 2, + anon_sym_true, + anon_sym_false, + STATE(160), 2, + sym_value, + sym_index, + ACTIONS(237), 5, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + STATE(151), 8, + sym_float, + sym_string, + sym_boolean, + sym_list, + sym_map, + sym_function, + sym_enum_instance, + sym_struct_instance, + [25283] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(900), 7, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(898), 18, + anon_sym_return, + anon_sym_break, + anon_sym_async, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_enum, + anon_sym_struct, + [25316] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -24880,9 +25137,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(880), 1, anon_sym_COLON_COLON, - STATE(63), 1, + STATE(50), 1, sym_assignment_operator, - STATE(685), 1, + STATE(688), 1, sym_type_specification, ACTIONS(269), 2, anon_sym_PLUS_EQ, @@ -24905,148 +25162,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25088] = 13, + [25365] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(189), 1, + ACTIONS(631), 1, aux_sym_command_argument_token2, - ACTIONS(197), 1, - sym_integer, - ACTIONS(203), 1, - anon_sym_LBRACK, - ACTIONS(483), 1, + ACTIONS(633), 1, anon_sym_LBRACE, - ACTIONS(888), 1, - sym_identifier, - ACTIONS(890), 1, - anon_sym_LPAREN, - ACTIONS(892), 1, - sym_range, - STATE(154), 1, - sym_index_expression, - ACTIONS(201), 2, - anon_sym_true, - anon_sym_false, - STATE(153), 2, - sym_value, - sym_index, - ACTIONS(199), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(155), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [25141] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(896), 7, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(894), 18, - anon_sym_return, - anon_sym_break, - anon_sym_async, - sym_identifier, + ACTIONS(637), 1, sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_enum, - anon_sym_struct, - [25174] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, + ACTIONS(643), 1, anon_sym_LBRACK, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(900), 1, - anon_sym_LPAREN, ACTIONS(902), 1, - sym_range, - STATE(92), 1, - sym_index_expression, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 2, - sym_value, - sym_index, - ACTIONS(23), 5, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - STATE(89), 8, - sym_float, - sym_string, - sym_boolean, - sym_list, - sym_map, - sym_function, - sym_enum_instance, - sym_struct_instance, - [25227] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(13), 1, - aux_sym_command_argument_token2, - ACTIONS(21), 1, - sym_integer, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(642), 1, - anon_sym_LBRACE, - ACTIONS(902), 1, - sym_range, + sym_identifier, ACTIONS(904), 1, - sym_identifier, - ACTIONS(906), 1, anon_sym_LPAREN, - STATE(92), 1, + ACTIONS(906), 1, + sym_range, + STATE(458), 1, sym_index_expression, - ACTIONS(25), 2, + ACTIONS(641), 2, anon_sym_true, anon_sym_false, - STATE(91), 2, + STATE(465), 2, sym_value, sym_index, - ACTIONS(23), 5, + ACTIONS(639), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(89), 8, + STATE(484), 8, sym_float, sym_string, sym_boolean, @@ -25055,38 +25202,38 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [25280] = 13, + [25418] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(620), 1, + ACTIONS(191), 1, aux_sym_command_argument_token2, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(626), 1, + ACTIONS(199), 1, sym_integer, - ACTIONS(632), 1, + ACTIONS(205), 1, anon_sym_LBRACK, + ACTIONS(647), 1, + anon_sym_LBRACE, ACTIONS(908), 1, sym_identifier, ACTIONS(910), 1, anon_sym_LPAREN, ACTIONS(912), 1, sym_range, - STATE(517), 1, + STATE(366), 1, sym_index_expression, - ACTIONS(630), 2, + ACTIONS(203), 2, anon_sym_true, anon_sym_false, - STATE(521), 2, + STATE(382), 2, sym_value, sym_index, - ACTIONS(628), 5, + ACTIONS(201), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(455), 8, + STATE(379), 8, sym_float, sym_string, sym_boolean, @@ -25095,16 +25242,16 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [25333] = 13, + [25471] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(465), 1, + ACTIONS(525), 1, aux_sym_command_argument_token2, - ACTIONS(467), 1, + ACTIONS(527), 1, anon_sym_LBRACE, - ACTIONS(471), 1, + ACTIONS(531), 1, sym_integer, - ACTIONS(477), 1, + ACTIONS(537), 1, anon_sym_LBRACK, ACTIONS(914), 1, sym_identifier, @@ -25112,21 +25259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(918), 1, sym_range, - STATE(526), 1, + STATE(511), 1, sym_index_expression, - ACTIONS(475), 2, + ACTIONS(535), 2, anon_sym_true, anon_sym_false, - STATE(527), 2, + STATE(512), 2, sym_value, sym_index, - ACTIONS(473), 5, + ACTIONS(533), 5, aux_sym_float_token1, anon_sym_Infinity, anon_sym_infinity, anon_sym_NaN, anon_sym_nan, - STATE(471), 8, + STATE(532), 8, sym_float, sym_string, sym_boolean, @@ -25135,7 +25282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function, sym_enum_instance, sym_struct_instance, - [25386] = 4, + [25524] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(880), 1, @@ -25165,7 +25312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25420] = 8, + [25558] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -25199,51 +25346,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25462] = 3, + [25600] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(279), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(277), 16, - anon_sym_SEMI, + ACTIONS(261), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(263), 1, + anon_sym_EQ, + ACTIONS(319), 1, anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + STATE(46), 1, + sym_assignment_operator, + ACTIONS(269), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25493] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 7, + ACTIONS(257), 6, anon_sym_as, sym_identifier, - anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(319), 16, + ACTIONS(259), 11, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -25253,12 +25379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25524] = 3, + [25641] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(283), 7, + ACTIONS(920), 1, + anon_sym_LPAREN, + ACTIONS(331), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25266,151 +25392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(281), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25555] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(313), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(311), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25586] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(275), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(273), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25617] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(920), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(362), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(369), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25652] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(341), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(339), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25683] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(922), 1, - anon_sym_LPAREN, - ACTIONS(327), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(325), 15, + ACTIONS(329), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -25426,165 +25408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [25716] = 5, - ACTIONS(353), 1, + [25674] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(359), 2, + ACTIONS(351), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(924), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(362), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 17, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [25751] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25782] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(927), 1, - anon_sym_elseif, - ACTIONS(929), 1, - anon_sym_else, - STATE(524), 1, - sym_else, - STATE(383), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(682), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(684), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [25821] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(333), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(331), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25852] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(337), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(335), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25883] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(920), 2, + ACTIONS(922), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(359), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(351), 17, + ACTIONS(353), 17, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, @@ -25602,91 +25438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25918] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(349), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(347), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25949] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [25980] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 7, - anon_sym_as, - sym_identifier, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(343), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [26011] = 3, + [25709] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(317), 7, @@ -25714,7 +25466,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26042] = 3, + [25740] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(337), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(335), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [25771] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(323), 7, @@ -25742,10 +25522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26073] = 3, + [25802] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(309), 7, + ACTIONS(349), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25753,7 +25533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(307), 16, + ACTIONS(347), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25770,10 +25550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26104] = 3, + [25833] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(297), 7, + ACTIONS(279), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25781,7 +25561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(295), 16, + ACTIONS(277), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25798,10 +25578,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26135] = 3, + [25864] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(293), 7, + ACTIONS(925), 1, + anon_sym_elseif, + ACTIONS(927), 1, + anon_sym_else, + STATE(509), 1, + sym_else, + STATE(384), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(694), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(696), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [25903] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(327), 7, anon_sym_as, sym_identifier, anon_sym_EQ, @@ -25809,7 +25621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(291), 16, + ACTIONS(325), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25826,7 +25638,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26166] = 3, + [25934] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(929), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(359), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [25969] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(345), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(343), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26000] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(305), 7, @@ -25854,40 +25724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26197] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(263), 1, - anon_sym_EQ, - ACTIONS(319), 1, - anon_sym_COLON, - STATE(62), 1, - sym_assignment_operator, - ACTIONS(269), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(257), 6, - anon_sym_as, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 11, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26238] = 3, + [26031] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(289), 7, @@ -25915,19 +25752,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [26269] = 7, + [26062] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(929), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(367), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(365), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26097] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(927), 1, + ACTIONS(925), 1, anon_sym_elseif, - ACTIONS(929), 1, + ACTIONS(927), 1, anon_sym_else, - STATE(511), 1, + STATE(524), 1, sym_else, - STATE(364), 2, + STATE(365), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(690), 9, + ACTIONS(674), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -25937,7 +25804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(692), 9, + ACTIONS(676), 9, sym_identifier, sym_integer, aux_sym_float_token1, @@ -25947,164 +25814,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - [26308] = 5, - ACTIONS(353), 1, + [26136] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(371), 2, + ACTIONS(275), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(273), 16, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26167] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(309), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(307), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26198] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(283), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26229] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(313), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(311), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26260] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(341), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(339), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26291] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(301), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(299), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26322] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(297), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26353] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(293), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(291), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26384] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26415] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 7, + anon_sym_as, + sym_identifier, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [26446] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 1, + anon_sym_SEMI, ACTIONS(931), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(381), 2, + STATE(389), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 16, - anon_sym_as, + ACTIONS(365), 17, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26342] = 5, - ACTIONS(353), 1, + [26480] = 5, + ACTIONS(3), 1, sym__comment, - ACTIONS(359), 2, + ACTIONS(933), 1, + anon_sym_elseif, + STATE(384), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(698), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(700), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + [26514] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 2, anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(933), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(381), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 16, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26376] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 1, - anon_sym_SEMI, ACTIONS(936), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(386), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(351), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, - [26410] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(938), 1, - anon_sym_elseif, - STATE(383), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(694), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(696), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - [26444] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 1, - anon_sym_SEMI, - ACTIONS(941), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(384), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, - [26478] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(931), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(380), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 16, + ACTIONS(365), 16, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, @@ -26121,18 +26181,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26512] = 5, - ACTIONS(353), 1, + [26548] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(371), 1, + ACTIONS(369), 2, anon_sym_SEMI, + anon_sym_PIPE_PIPE, ACTIONS(936), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(384), 2, + STATE(388), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 17, + ACTIONS(371), 16, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26582] = 5, + ACTIONS(351), 1, + anon_sym_SEMI, + ACTIONS(355), 1, + sym__comment, + ACTIONS(938), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(387), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 17, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_PIPE, @@ -26150,7 +26239,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_LBRACK, anon_sym_STAR, - [26546] = 6, + [26616] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(351), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(941), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(388), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 16, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26650] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 1, + anon_sym_SEMI, + ACTIONS(931), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(387), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_STAR, + [26684] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + ACTIONS(946), 1, + anon_sym_LT, + STATE(429), 1, + sym_type_arguments, + STATE(430), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(715), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(717), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [26721] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(403), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26750] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -26179,430 +26382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26581] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(399), 19, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26610] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(944), 1, - anon_sym_LBRACE, - ACTIONS(946), 1, - anon_sym_LT, - STATE(415), 1, - sym_type_arguments, - STATE(416), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(724), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(726), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [26647] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(202), 1, - sym_math_operator, - STATE(203), 1, - sym_logic_operator, - ACTIONS(407), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(409), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26679] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 2, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - ACTIONS(399), 18, - anon_sym_as, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_identifier, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26707] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(202), 1, - sym_math_operator, - STATE(203), 1, - sym_logic_operator, - ACTIONS(419), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26739] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(948), 1, - anon_sym_PIPE, - ACTIONS(257), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26771] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(377), 5, - anon_sym_as, - anon_sym_PIPE, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(375), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26799] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(317), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26829] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(343), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26857] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(257), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26889] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(381), 5, - anon_sym_as, - anon_sym_PIPE, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(379), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26917] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(347), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(349), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - [26945] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(385), 1, - sym_identifier, - ACTIONS(950), 1, - anon_sym_as, - STATE(202), 1, - sym_math_operator, - STATE(203), 1, - sym_logic_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(383), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [26985] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(952), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(408), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 15, - anon_sym_as, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27017] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(339), 10, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(341), 10, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_else, - [27045] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 1, - anon_sym_SEMI, - ACTIONS(399), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - sym_range, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACK, - anon_sym_STAR, - [27073] = 3, + [26785] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(745), 10, @@ -26627,10 +26407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_else, - [27101] = 3, + [26813] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(737), 10, + ACTIONS(343), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -26641,7 +26421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(739), 10, + ACTIONS(345), 10, sym_identifier, sym_integer, aux_sym_float_token1, @@ -26652,18 +26432,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_else, - [27129] = 5, - ACTIONS(353), 1, + [26841] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(359), 1, + ACTIONS(339), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(341), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + [26869] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 1, anon_sym_PIPE_PIPE, - ACTIONS(954), 2, + ACTIONS(948), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, STATE(406), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(361), 15, + ACTIONS(365), 15, anon_sym_as, anon_sym_async, anon_sym_LBRACE, @@ -26679,7 +26484,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27161] = 3, + [26901] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, + anon_sym_PIPE, + ACTIONS(257), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26933] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(389), 1, + sym_identifier, + ACTIONS(952), 1, + anon_sym_as, + STATE(213), 1, + sym_logic_operator, + STATE(214), 1, + sym_math_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(387), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26973] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(213), 1, + sym_logic_operator, + STATE(214), 1, + sym_math_operator, + ACTIONS(385), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(383), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27005] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 10, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(751), 10, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_else, + [27033] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(297), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27063] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(946), 1, + anon_sym_LT, + STATE(539), 1, + sym_type_arguments, + ACTIONS(417), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(419), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [27095] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 1, + anon_sym_SEMI, + ACTIONS(403), 19, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + sym_range, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + anon_sym_LBRACK, + anon_sym_STAR, + [27123] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(381), 5, + anon_sym_as, + anon_sym_PIPE, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(379), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27151] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(347), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27179] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(948), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(408), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 15, + anon_sym_as, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27211] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(335), 10, @@ -26704,18 +26774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_else, - [27189] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 1, + [27239] = 5, + ACTIONS(351), 1, anon_sym_PIPE_PIPE, - ACTIONS(952), 2, + ACTIONS(355), 1, + sym__comment, + ACTIONS(954), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(406), 2, + STATE(408), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 15, + ACTIONS(353), 15, anon_sym_as, anon_sym_async, anon_sym_LBRACE, @@ -26731,7 +26801,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27221] = 6, + [27271] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + ACTIONS(403), 18, + anon_sym_as, + anon_sym_PIPE, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_identifier, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27299] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(257), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27331] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(377), 5, + anon_sym_as, + anon_sym_PIPE, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(375), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27359] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(213), 1, + sym_logic_operator, + STATE(214), 1, + sym_math_operator, + ACTIONS(423), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27391] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(389), 1, + sym_identifier, + ACTIONS(952), 1, + anon_sym_as, + STATE(209), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(387), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27430] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(957), 1, + anon_sym_COLON_COLON, + ACTIONS(265), 4, + anon_sym_as, + anon_sym_COLON, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27459] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -26740,6 +26969,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(957), 1, anon_sym_COLON_COLON, + ACTIONS(257), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27492] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(959), 1, + anon_sym_as, + ACTIONS(961), 1, + anon_sym_async, + ACTIONS(963), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(297), 1, + sym_block, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27533] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(965), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(422), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(365), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27564] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(347), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DASH_GT, + [27591] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_COLON, + ACTIONS(967), 1, + anon_sym_COLON_COLON, ACTIONS(257), 2, anon_sym_GT, anon_sym_LT, @@ -26758,119 +27095,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27254] = 10, + [27624] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(959), 1, anon_sym_as, - ACTIONS(961), 1, - anon_sym_async, - ACTIONS(963), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - STATE(302), 1, - sym_block, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27295] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(965), 1, - anon_sym_async, - ACTIONS(967), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - STATE(537), 1, - sym_block, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27336] = 4, - ACTIONS(3), 1, - sym__comment, ACTIONS(969), 1, - anon_sym_LT, - ACTIONS(421), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(423), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [27365] = 4, - ACTIONS(3), 1, - sym__comment, + anon_sym_async, ACTIONS(971), 1, - anon_sym_LT, - ACTIONS(421), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(515), 1, + sym_block, + ACTIONS(399), 2, anon_sym_GT, - ACTIONS(423), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [27394] = 10, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27665] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(959), 1, @@ -26879,147 +27135,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(975), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(236), 1, sym_math_operator, - STATE(221), 1, + STATE(241), 1, sym_logic_operator, - STATE(404), 1, + STATE(400), 1, sym_block, - ACTIONS(395), 2, + ACTIONS(399), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + ACTIONS(395), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27435] = 5, - ACTIONS(3), 1, + [27706] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(944), 1, - anon_sym_LBRACE, - STATE(421), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(760), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(762), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [27466] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(944), 1, - anon_sym_LBRACE, - STATE(422), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(760), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(762), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [27497] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(957), 1, - anon_sym_COLON_COLON, - ACTIONS(265), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(369), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27526] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(385), 1, - sym_identifier, - ACTIONS(950), 1, - anon_sym_as, - STATE(217), 1, - sym_math_operator, - STATE(226), 1, - sym_logic_operator, - ACTIONS(383), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27565] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(977), 2, + ACTIONS(965), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(420), 2, + STATE(433), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 14, + ACTIONS(371), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_PLUS, @@ -27034,109 +27183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27596] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(420), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27627] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(944), 1, - anon_sym_LBRACE, - STATE(422), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(749), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(751), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [27658] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(982), 1, - anon_sym_LBRACE, - STATE(422), 1, - aux_sym_enum_definition_repeat2, - ACTIONS(753), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(755), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [27689] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(375), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(377), 10, - anon_sym_PIPE, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [27716] = 3, + [27737] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(379), 9, @@ -27160,21 +27207,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - [27743] = 6, + [27764] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(375), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(377), 10, + anon_sym_PIPE, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [27791] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(950), 1, + anon_sym_PIPE, + ACTIONS(257), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27820] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(265), 1, - anon_sym_COLON, - ACTIONS(985), 1, - anon_sym_COLON_COLON, - ACTIONS(257), 3, + ACTIONS(977), 1, + anon_sym_PIPE, + ACTIONS(257), 4, anon_sym_as, + sym_identifier, anon_sym_GT, anon_sym_LT, ACTIONS(259), 13, - anon_sym_async, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27851] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 1, + anon_sym_PIPE_PIPE, + ACTIONS(979), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(428), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(365), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27882] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(979), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(451), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27913] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(434), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(753), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(755), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [27944] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(435), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(753), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(755), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [27975] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(257), 1, + anon_sym_GT, + ACTIONS(265), 1, + anon_sym_COLON, + ACTIONS(967), 1, + anon_sym_COLON_COLON, + ACTIONS(981), 1, + anon_sym_LT, + STATE(743), 1, + sym_type_specification, + ACTIONS(261), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(259), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28012] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(967), 1, + anon_sym_COLON_COLON, + ACTIONS(265), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -27187,18 +27440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27776] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 1, + [28041] = 5, + ACTIONS(351), 1, anon_sym_PIPE_PIPE, - ACTIONS(977), 2, + ACTIONS(355), 1, + sym__comment, + ACTIONS(983), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(419), 2, + STATE(433), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(351), 14, + ACTIONS(353), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_PLUS, @@ -27213,10 +27466,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27807] = 4, + [28072] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(987), 1, + ACTIONS(944), 1, + anon_sym_LBRACE, + STATE(435), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(764), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(766), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [28103] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(986), 1, + anon_sym_LBRACE, + STATE(435), 1, + aux_sym_enum_definition_repeat2, + ACTIONS(757), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(759), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [28134] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(959), 1, + anon_sym_as, + ACTIONS(973), 1, + anon_sym_async, + ACTIONS(975), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(393), 1, + sym_block, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28175] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(257), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28204] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(989), 1, + anon_sym_LT, + ACTIONS(417), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(419), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [28233] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(959), 1, + anon_sym_as, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(993), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(342), 1, + sym_block, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28274] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(995), 1, anon_sym_DASH_GT, ACTIONS(413), 5, anon_sym_as, @@ -27238,235 +27655,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27836] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(989), 1, - anon_sym_DASH_GT, - ACTIONS(403), 5, - anon_sym_as, - sym_identifier, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27865] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(991), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(429), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27896] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(343), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DASH_GT, - [27923] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(994), 1, - anon_sym_PIPE, - ACTIONS(257), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [27954] = 10, + [28303] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(959), 1, anon_sym_as, - ACTIONS(965), 1, + ACTIONS(961), 1, anon_sym_async, - ACTIONS(967), 1, + ACTIONS(963), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(236), 1, sym_math_operator, - STATE(221), 1, + STATE(241), 1, sym_logic_operator, - STATE(506), 1, + STATE(300), 1, sym_block, - ACTIONS(395), 2, + ACTIONS(399), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + ACTIONS(395), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27995] = 8, + [28344] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(257), 1, - anon_sym_GT, - ACTIONS(265), 1, - anon_sym_COLON, - ACTIONS(957), 1, - anon_sym_COLON_COLON, - ACTIONS(996), 1, - anon_sym_LT, - STATE(735), 1, - sym_type_specification, - ACTIONS(261), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(259), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28032] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(998), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(429), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(369), 14, + ACTIONS(959), 1, anon_sym_as, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(993), 1, anon_sym_LBRACE, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(329), 1, + sym_block, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28063] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 1, anon_sym_PIPE_PIPE, - ACTIONS(998), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(434), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28094] = 4, + [28385] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(948), 1, - anon_sym_PIPE, - ACTIONS(257), 4, + ACTIONS(997), 1, + anon_sym_DASH_GT, + ACTIONS(407), 5, anon_sym_as, sym_identifier, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(259), 14, + ACTIONS(405), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -27476,38 +27742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28123] = 5, + [28414] = 5, ACTIONS(3), 1, sym__comment, - STATE(217), 1, - sym_math_operator, - STATE(226), 1, - sym_logic_operator, - ACTIONS(419), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28154] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(701), 1, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(705), 1, anon_sym_PIPE, - ACTIONS(782), 9, + ACTIONS(778), 8, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(776), 9, sym_identifier, sym_integer, aux_sym_float_token1, @@ -27517,7 +27768,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - ACTIONS(784), 9, + [28445] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(705), 1, + anon_sym_PIPE, + ACTIONS(776), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + ACTIONS(778), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -27527,66 +27793,66 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - [28183] = 10, + [28474] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(1000), 1, - anon_sym_async, + ACTIONS(999), 1, + sym_identifier, ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - STATE(330), 1, - sym_block, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28224] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(985), 1, - anon_sym_COLON_COLON, - ACTIONS(265), 4, - anon_sym_as, - anon_sym_COLON, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 14, anon_sym_LPAREN, - anon_sym_async, + ACTIONS(1007), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28253] = 4, + ACTIONS(1010), 1, + anon_sym_LBRACK, + ACTIONS(1016), 1, + anon_sym_list, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1005), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(1013), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [28515] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1004), 1, + ACTIONS(1019), 1, + anon_sym_DASH_GT, + ACTIONS(405), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(407), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [28544] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1021), 1, anon_sym_DASH_GT, ACTIONS(411), 7, anon_sym_LPAREN, @@ -27608,139 +27874,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [28282] = 10, + [28573] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(973), 1, - anon_sym_async, - ACTIONS(975), 1, - anon_sym_LBRACE, STATE(209), 1, - sym_math_operator, - STATE(221), 1, sym_logic_operator, - STATE(405), 1, - sym_block, - ACTIONS(395), 2, + STATE(211), 1, + sym_math_operator, + ACTIONS(423), 4, + anon_sym_as, + sym_identifier, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + ACTIONS(425), 13, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28323] = 10, + [28604] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1006), 1, + STATE(209), 1, + sym_logic_operator, + STATE(211), 1, + sym_math_operator, + ACTIONS(385), 4, + anon_sym_as, sym_identifier, - ACTIONS(1009), 1, - anon_sym_LPAREN, - ACTIONS(1014), 1, - anon_sym_LBRACE, - ACTIONS(1017), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, - anon_sym_list, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1012), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT, - ACTIONS(1020), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28364] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(701), 1, - anon_sym_PIPE, - ACTIONS(784), 8, + anon_sym_LT, + ACTIONS(383), 13, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28635] = 5, + ACTIONS(351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(355), 1, + sym__comment, + ACTIONS(1023), 2, + aux_sym_command_argument_token1, aux_sym_command_argument_token2, + STATE(451), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 14, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(782), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [28395] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(961), 1, - anon_sym_async, - ACTIONS(963), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - STATE(292), 1, - sym_block, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28436] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(257), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -27749,92 +27948,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28465] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(217), 1, - sym_math_operator, - STATE(226), 1, - sym_logic_operator, - ACTIONS(407), 4, - anon_sym_as, - sym_identifier, anon_sym_GT, anon_sym_LT, - ACTIONS(409), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28496] = 4, + [28666] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(1026), 1, - anon_sym_DASH_GT, - ACTIONS(401), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(403), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28525] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(959), 1, - anon_sym_as, - ACTIONS(1000), 1, - anon_sym_async, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - STATE(318), 1, - sym_block, - ACTIONS(395), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + STATE(493), 1, + sym_type_arguments, + ACTIONS(419), 3, + anon_sym_as, + sym_identifier, + anon_sym_GT, + ACTIONS(417), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28566] = 3, + [28697] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(959), 1, + anon_sym_as, + ACTIONS(969), 1, + anon_sym_async, + ACTIONS(971), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + STATE(500), 1, + sym_block, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28738] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(275), 2, @@ -27857,520 +28032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [28592] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(437), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28618] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28644] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(307), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28670] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(449), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28696] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28722] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(317), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 14, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28750] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(283), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(281), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28776] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1032), 1, - anon_sym_COMMA, - ACTIONS(1030), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(1028), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28804] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(401), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(403), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28830] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(443), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(441), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28856] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 1, - anon_sym_PIPE_PIPE, - ACTIONS(399), 17, - anon_sym_as, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28882] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(341), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(339), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28908] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(411), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(413), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28934] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(431), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(429), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [28960] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(433), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(435), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [28986] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(437), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(439), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [29012] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(265), 1, - anon_sym_COLON, - ACTIONS(957), 1, - anon_sym_COLON_COLON, - ACTIONS(1034), 1, - anon_sym_RPAREN, - ACTIONS(257), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29046] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(281), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29072] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(345), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(343), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29098] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(317), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29126] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(317), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(315), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29152] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(309), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(307), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29178] = 3, + [28764] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(337), 2, @@ -28393,1425 +28055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29204] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(297), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(295), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29230] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1036), 1, - anon_sym_SEMI, - ACTIONS(840), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(842), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29258] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(383), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(385), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29284] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29310] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1038), 1, - anon_sym_LPAREN, - ACTIONS(327), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(325), 14, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29338] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(257), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29368] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(840), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(842), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29394] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(287), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29420] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1040), 1, - anon_sym_LT, - ACTIONS(423), 3, - anon_sym_as, - sym_identifier, - anon_sym_GT, - ACTIONS(421), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29448] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(423), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(421), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29474] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1042), 1, - anon_sym_LT, - ACTIONS(423), 3, - anon_sym_as, - sym_identifier, - anon_sym_GT, - ACTIONS(421), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29502] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(291), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29528] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(778), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(780), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29554] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 1, - anon_sym_COLON, - ACTIONS(257), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(261), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(259), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29584] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(339), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(341), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29610] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(403), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29636] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(349), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(347), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29662] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1044), 1, - anon_sym_SEMI, - ACTIONS(790), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(792), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29690] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(279), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(277), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29716] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(413), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(411), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29742] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(435), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(433), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29768] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(790), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(792), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29794] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(836), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(838), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [29820] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29846] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(289), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(287), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29872] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(349), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(347), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29898] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(341), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(339), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29924] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(291), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29950] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(337), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(335), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [29976] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(832), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(834), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30002] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(858), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(860), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30028] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(854), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(856), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30054] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(844), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(846), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30080] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(850), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(852), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30106] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(840), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(842), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30132] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(333), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(331), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30158] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(277), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30184] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(682), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(684), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30210] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(347), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(349), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30236] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(335), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(337), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30262] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30288] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(870), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(872), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30314] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(303), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30340] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(323), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(321), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30366] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(876), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(878), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30392] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(786), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(788), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30418] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(333), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(331), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30444] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 15, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30470] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(303), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30496] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - ACTIONS(407), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(409), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30526] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(866), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(868), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30552] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(862), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(864), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30578] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(323), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(321), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30604] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(319), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30630] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(209), 1, - sym_math_operator, - STATE(221), 1, - sym_logic_operator, - ACTIONS(419), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30660] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(994), 1, - anon_sym_PIPE, - ACTIONS(257), 4, - anon_sym_as, - sym_identifier, - anon_sym_GT, - anon_sym_LT, - ACTIONS(259), 13, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30688] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(421), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(423), 11, - sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [30714] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(774), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(776), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [30740] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(301), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(299), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30766] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(782), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - ACTIONS(784), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - [30792] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1046), 1, - anon_sym_LPAREN, - ACTIONS(327), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(325), 15, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30820] = 3, + [28790] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(313), 3, @@ -29834,7 +28078,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30846] = 3, + [28816] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(339), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(341), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [28842] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(327), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(325), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28868] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + ACTIONS(385), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(383), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28898] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(345), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(343), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28924] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(289), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(287), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28950] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(451), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28976] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(429), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(427), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29002] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(455), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(453), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29028] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29054] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 17, + anon_sym_as, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29080] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(293), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(291), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29106] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(335), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(337), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29132] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(236), 1, + sym_math_operator, + STATE(241), 1, + sym_logic_operator, + ACTIONS(423), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29162] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(283), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29188] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(275), 3, @@ -29857,20 +28427,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30872] = 3, + [29214] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(796), 9, - anon_sym_SEMI, + ACTIONS(341), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(339), 16, anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_command_argument_token2, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(798), 9, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29240] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1028), 1, + anon_sym_LPAREN, + ACTIONS(331), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(329), 14, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(317), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(315), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29294] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(776), 9, sym_identifier, sym_integer, aux_sym_float_token1, @@ -29880,7 +28510,621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - [30898] = 3, + ACTIONS(778), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + [29320] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(323), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(321), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29346] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(305), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(303), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29372] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(784), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(786), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29398] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(257), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29428] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(804), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(806), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29454] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29480] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(309), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(307), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29506] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(301), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(299), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29532] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(297), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29558] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(297), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29586] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(279), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(277), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29612] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(419), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29638] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1030), 1, + anon_sym_LT, + ACTIONS(419), 3, + anon_sym_as, + sym_identifier, + anon_sym_GT, + ACTIONS(417), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29666] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(347), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29692] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1032), 1, + anon_sym_SEMI, + ACTIONS(784), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(786), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29720] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1034), 1, + anon_sym_SEMI, + ACTIONS(804), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(806), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29748] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(293), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(291), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29774] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29800] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(345), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(343), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29826] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(772), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(774), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29852] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(870), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(872), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29878] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(413), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(411), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29904] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(441), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(439), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29930] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(447), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(445), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29956] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(874), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(876), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [29982] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(800), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(802), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30008] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(313), 2, @@ -29903,17 +29147,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30924] = 3, + [30034] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(377), 3, + ACTIONS(826), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(828), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30060] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(337), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(375), 14, + ACTIONS(335), 15, anon_sym_LPAREN, anon_sym_async, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -29925,184 +29193,926 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30949] = 10, + [30086] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, + ACTIONS(816), 9, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1052), 1, - anon_sym_RPAREN, - ACTIONS(1054), 1, + anon_sym_COMMA, + aux_sym_command_argument_token2, anon_sym_LBRACE, - ACTIONS(1056), 1, + anon_sym_RBRACE, + sym_range, anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [30988] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, + anon_sym_STAR, + ACTIONS(818), 9, sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1062), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym_type, - STATE(549), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31027] = 10, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30112] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1064), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym_type, - STATE(551), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31066] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1066), 1, - anon_sym_RPAREN, - ACTIONS(1068), 1, + ACTIONS(341), 3, anon_sym_as, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + ACTIONS(339), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31101] = 10, + [30138] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1070), 1, + ACTIONS(289), 2, anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31140] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, + anon_sym_LT, + ACTIONS(287), 16, anon_sym_LPAREN, - ACTIONS(1054), 1, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1072), 1, - anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31179] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 1, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(399), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30164] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(437), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(435), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30190] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(866), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(868), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30216] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(862), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(864), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30242] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(327), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(325), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30294] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(808), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(810), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30320] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1040), 1, + anon_sym_COMMA, + ACTIONS(1038), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(1036), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [30348] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(812), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(814), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30374] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(283), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30400] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(343), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(345), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30426] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(768), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(770), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30452] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(265), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 15, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30478] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1042), 1, + anon_sym_LPAREN, + ACTIONS(331), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(329), 15, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30506] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(317), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(315), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30532] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(323), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(321), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30558] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(820), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(822), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30584] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(694), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(696), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30610] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(784), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(786), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30636] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(305), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(303), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30662] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(780), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(782), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30688] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(257), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(261), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(259), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30718] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(387), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(389), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [30744] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(307), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30770] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(301), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(299), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30796] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(297), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30822] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 1, + anon_sym_COLON, + ACTIONS(297), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(295), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30850] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(279), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(277), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30876] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(265), 1, + anon_sym_COLON, + ACTIONS(967), 1, + anon_sym_COLON_COLON, + ACTIONS(1044), 1, + anon_sym_RPAREN, + ACTIONS(257), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30910] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(445), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(447), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [30936] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(439), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(441), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [30962] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(411), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(413), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [30988] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(405), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(407), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31014] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(977), 1, + anon_sym_PIPE, + ACTIONS(257), 4, + anon_sym_as, + sym_identifier, + anon_sym_GT, + anon_sym_LT, + ACTIONS(259), 13, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31042] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(417), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(419), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31068] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_RBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31107] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(201), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(423), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31136] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 16, anon_sym_as, aux_sym_command_argument_token1, aux_sym_command_argument_token2, @@ -30119,10 +30129,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31204] = 4, + [31161] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(1005), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + ACTIONS(1060), 11, + sym_identifier, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_list, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31186] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1062), 1, + anon_sym_RPAREN, + ACTIONS(1064), 1, + anon_sym_as, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31221] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1066), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31260] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1068), 1, + anon_sym_RBRACK, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31299] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1070), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31338] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1064), 1, + anon_sym_as, + ACTIONS(1072), 1, + anon_sym_RPAREN, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31373] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, ACTIONS(1074), 1, + anon_sym_RBRACK, + STATE(514), 1, + sym_type, + STATE(548), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31412] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1076), 1, + anon_sym_RPAREN, + STATE(514), 1, + sym_type, + STATE(549), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31451] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1078), 1, anon_sym_DASH_GT, ACTIONS(413), 4, anon_sym_as, @@ -30142,84 +30373,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31231] = 10, + [31478] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1076), 1, - anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31270] = 10, - ACTIONS(3), 1, - sym__comment, ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1078), 1, - anon_sym_RPAREN, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31309] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1080), 1, anon_sym_RPAREN, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(557), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30229,26 +30402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31348] = 10, + [31517] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1082), 1, anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(558), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30258,26 +30431,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31387] = 10, + [31556] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1084), 1, - anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30287,53 +30460,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31426] = 8, + [31595] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1068), 1, - anon_sym_as, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, ACTIONS(1086), 1, anon_sym_RPAREN, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31461] = 10, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31634] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1088), 1, anon_sym_RBRACK, - STATE(458), 1, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - STATE(548), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30343,53 +30518,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31500] = 8, + [31673] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - ACTIONS(1090), 1, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, anon_sym_LBRACE, - STATE(235), 1, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1090), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31712] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1064), 1, + anon_sym_as, + ACTIONS(1092), 1, + anon_sym_RPAREN, + STATE(199), 1, sym_math_operator, - STATE(241), 1, + STATE(235), 1, sym_logic_operator, - ACTIONS(395), 2, + ACTIONS(399), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(391), 5, + ACTIONS(395), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(393), 6, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31535] = 10, + [31747] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - ACTIONS(1092), 1, - anon_sym_RPAREN, - STATE(458), 1, + ACTIONS(1094), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - STATE(550), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30399,12 +30603,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31574] = 4, + [31786] = 10, ACTIONS(3), 1, sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1096), 1, + anon_sym_RBRACK, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31825] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, ACTIONS(1098), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31864] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1100), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31903] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1102), 1, + anon_sym_RPAREN, + STATE(514), 1, + sym_type, + STATE(556), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [31942] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1108), 1, anon_sym_COMMA, - ACTIONS(1096), 7, + ACTIONS(1106), 7, anon_sym_LPAREN, aux_sym_command_argument_token2, anon_sym_LBRACE, @@ -30412,7 +30732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(1094), 9, + ACTIONS(1104), 9, sym_identifier, sym_integer, aux_sym_float_token1, @@ -30422,164 +30742,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - [31601] = 3, + [31969] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1012), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - ACTIONS(1100), 11, + ACTIONS(1046), 1, sym_identifier, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_list, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31626] = 10, - ACTIONS(3), 1, - sym__comment, ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1102), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym_type, - STATE(561), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31665] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1104), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym_type, - STATE(562), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31704] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1106), 1, - anon_sym_RPAREN, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31743] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1108), 1, - anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31782] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1110), 1, anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30589,26 +30771,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31821] = 10, + [32008] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, ACTIONS(1112), 1, + anon_sym_DASH_GT, + ACTIONS(407), 4, + anon_sym_as, + anon_sym_DASH, anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + anon_sym_LT, + ACTIONS(405), 12, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32035] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1114), 1, + anon_sym_RBRACK, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(562), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30618,7 +30823,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [31860] = 4, + [32074] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1116), 1, + anon_sym_RPAREN, + STATE(514), 1, + sym_type, + STATE(563), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32113] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1118), 1, + anon_sym_RBRACK, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32152] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1120), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32191] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -30641,138 +30933,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31887] = 8, + [32218] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - ACTIONS(1114), 1, - anon_sym_RPAREN, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31922] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1116), 1, - anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [31961] = 10, - ACTIONS(3), 1, - sym__comment, ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1118), 1, - anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32000] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - ACTIONS(1120), 1, - anon_sym_RPAREN, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32035] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1122), 1, anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(571), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -30782,12 +30962,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32074] = 3, - ACTIONS(353), 1, + [32257] = 8, + ACTIONS(3), 1, sym__comment, - ACTIONS(397), 1, + ACTIONS(1064), 1, + anon_sym_as, + ACTIONS(1124), 1, + anon_sym_LBRACE, + STATE(201), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(399), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32292] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 16, anon_sym_RPAREN, anon_sym_as, aux_sym_command_argument_token1, @@ -30804,65 +31011,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32099] = 10, + [32317] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1124), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym_type, - STATE(568), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32138] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, ACTIONS(1126), 1, + anon_sym_LT, + STATE(619), 1, + sym_type_arguments, + ACTIONS(419), 2, + anon_sym_as, + anon_sym_GT, + ACTIONS(417), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32346] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1064), 1, + anon_sym_as, + ACTIONS(1128), 1, anon_sym_RPAREN, - STATE(458), 1, - sym_type, - STATE(540), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32177] = 5, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32381] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -30886,125 +31086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32206] = 5, + [32410] = 10, ACTIONS(3), 1, sym__comment, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(419), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(417), 13, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32235] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(407), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(409), 13, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32264] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1128), 1, - anon_sym_RPAREN, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32303] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(381), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(379), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32328] = 10, - ACTIONS(3), 1, - sym__comment, ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, ACTIONS(1130), 1, - anon_sym_RBRACK, - STATE(458), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - STATE(570), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31014,7 +31115,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32367] = 3, + [32449] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1132), 1, + anon_sym_RPAREN, + STATE(514), 1, + sym_type, + STATE(572), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32488] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1134), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32527] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(381), 3, @@ -31036,7 +31195,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32392] = 3, + [32552] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(423), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(425), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32581] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(377), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(375), 14, + anon_sym_LPAREN, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32606] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(385), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(383), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32635] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1136), 1, + anon_sym_RBRACK, + STATE(514), 1, + sym_type, + STATE(542), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32674] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1138), 1, + anon_sym_RPAREN, + STATE(514), 1, + sym_type, + STATE(582), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [32713] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1140), 1, + anon_sym_DASH_GT, + ACTIONS(407), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 13, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32740] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(377), 2, @@ -31058,46 +31368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32417] = 10, + [32765] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, + ACTIONS(381), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(379), 15, anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1132), 1, anon_sym_RPAREN, - STATE(458), 1, - sym_type, - STATE(577), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32456] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(235), 1, - sym_math_operator, - STATE(241), 1, - sym_logic_operator, - ACTIONS(407), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(409), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, @@ -31111,77 +31390,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32485] = 5, + [32790] = 8, ACTIONS(3), 1, sym__comment, - STATE(235), 1, + ACTIONS(1064), 1, + anon_sym_as, + ACTIONS(1142), 1, + anon_sym_LBRACE, + STATE(201), 1, sym_math_operator, - STATE(241), 1, + STATE(208), 1, sym_logic_operator, - ACTIONS(419), 2, + ACTIONS(399), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(417), 13, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(395), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(397), 6, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32514] = 8, + [32825] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - ACTIONS(1134), 1, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1144), 1, anon_sym_RPAREN, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32549] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1136), 1, - anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(599), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31191,26 +31446,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32588] = 10, + [32864] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - ACTIONS(1138), 1, - anon_sym_GT, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + ACTIONS(1146), 1, + anon_sym_RBRACK, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + STATE(602), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31220,30 +31475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32627] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1140), 1, - anon_sym_DASH_GT, - ACTIONS(403), 4, - anon_sym_as, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 12, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32654] = 4, + [32903] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, @@ -31266,107 +31498,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32681] = 10, + [32930] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1142), 1, - anon_sym_RPAREN, - STATE(458), 1, - sym_type, - STATE(594), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32720] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1144), 1, - anon_sym_RBRACK, - STATE(458), 1, - sym_type, - STATE(592), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32759] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - ACTIONS(1146), 1, - anon_sym_RBRACK, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [32798] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1148), 1, - anon_sym_DASH_GT, - ACTIONS(413), 3, - anon_sym_DASH, + STATE(201), 1, + sym_math_operator, + STATE(208), 1, + sym_logic_operator, + ACTIONS(385), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(411), 13, - anon_sym_RPAREN, + ACTIONS(383), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -31376,26 +31522,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32825] = 10, + [32959] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(419), 1, + anon_sym_GT, + ACTIONS(1148), 1, + anon_sym_LT, + STATE(610), 1, + sym_type_arguments, + ACTIONS(417), 14, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32988] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1064), 1, + anon_sym_as, ACTIONS(1150), 1, anon_sym_RPAREN, - STATE(443), 1, - aux_sym_type_repeat1, - STATE(458), 1, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33023] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1152), 1, + anon_sym_RPAREN, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31405,132 +31602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [32864] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - ACTIONS(1152), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_math_operator, - STATE(241), 1, - sym_logic_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32899] = 4, + [33062] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1154), 1, anon_sym_DASH_GT, - ACTIONS(403), 3, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 13, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32926] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(431), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(429), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32950] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1158), 7, - anon_sym_LPAREN, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_range, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(1156), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [32974] = 3, - ACTIONS(3), 1, - sym__comment, ACTIONS(413), 3, - anon_sym_as, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, ACTIONS(411), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32998] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(423), 1, - anon_sym_GT, - ACTIONS(1160), 1, - anon_sym_LT, - ACTIONS(421), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -31540,108 +31625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33024] = 3, + [33089] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(423), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(421), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33048] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(435), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(433), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33072] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 3, - anon_sym_as, - anon_sym_GT, - anon_sym_LT, - ACTIONS(437), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33096] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(565), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(1162), 9, + ACTIONS(1046), 1, sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [33120] = 9, - ACTIONS(3), 1, - sym__comment, ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(458), 1, + ACTIONS(1156), 1, + anon_sym_GT, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, sym_type, - STATE(567), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31651,16 +31654,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33156] = 4, + [33128] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(423), 1, - anon_sym_GT, - ACTIONS(1164), 1, - anon_sym_LT, - ACTIONS(421), 14, - anon_sym_RPAREN, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1158), 1, + anon_sym_RBRACK, + STATE(446), 1, + aux_sym_type_repeat2, + STATE(514), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33167] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(514), 1, + sym_type, + STATE(564), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33203] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(455), 3, anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(453), 13, + anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -31673,7 +31731,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33182] = 3, + [33227] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(441), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(439), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33251] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(413), 2, @@ -31694,56 +31773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33206] = 3, + [33275] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(403), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(401), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33230] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(435), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(433), 14, - anon_sym_RPAREN, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33254] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(403), 3, + ACTIONS(437), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(401), 13, + ACTIONS(435), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -31757,15 +31794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33278] = 3, + [33299] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(449), 2, + ACTIONS(447), 3, + anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(447), 14, - anon_sym_RPAREN, - anon_sym_as, + ACTIONS(445), 13, + anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -31778,24 +31815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33302] = 9, + [33323] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(458), 1, + STATE(514), 1, sym_type, - STATE(586), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + STATE(547), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -31805,81 +31842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33338] = 4, + [33359] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1166), 1, - anon_sym_LT, - ACTIONS(423), 2, - anon_sym_as, - anon_sym_GT, - ACTIONS(421), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33364] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(449), 3, - anon_sym_as, + ACTIONS(407), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(447), 13, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33388] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1068), 1, - anon_sym_as, - STATE(204), 1, - sym_logic_operator, - STATE(212), 1, - sym_math_operator, - ACTIONS(395), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(391), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(393), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33420] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(437), 14, + ACTIONS(405), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -31894,7 +31863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33444] = 4, + [33383] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(257), 2, @@ -31916,41 +31885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33470] = 9, + [33409] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(458), 1, - sym_type, - STATE(563), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33506] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(443), 3, + ACTIONS(413), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(441), 13, + ACTIONS(411), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -31964,14 +31906,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33530] = 3, + [33433] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(431), 3, + ACTIONS(455), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(453), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33457] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(419), 1, + anon_sym_GT, + ACTIONS(1160), 1, + anon_sym_LT, + ACTIONS(417), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33483] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(514), 1, + sym_type, + STATE(561), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33519] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33543] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(567), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(1162), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [33567] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(419), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 14, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33591] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(429), 13, + ACTIONS(405), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -31985,24 +32060,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33554] = 9, + [33615] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(441), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(439), 14, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(1056), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33639] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(458), 1, + STATE(514), 1, sym_type, - STATE(587), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + STATE(559), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32012,24 +32108,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33590] = 9, + [33675] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(451), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 13, + anon_sym_async, anon_sym_LBRACE, - ACTIONS(1056), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33699] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1166), 7, + anon_sym_LPAREN, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_range, anon_sym_LBRACK, - ACTIONS(1060), 1, + anon_sym_STAR, + ACTIONS(1164), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [33723] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1168), 1, + anon_sym_LT, + ACTIONS(419), 2, + anon_sym_as, + anon_sym_GT, + ACTIONS(417), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33749] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, anon_sym_list, - STATE(458), 1, + STATE(514), 1, sym_type, - STATE(552), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + STATE(580), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32039,10 +32199,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33626] = 3, + [33785] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(531), 7, + ACTIONS(419), 3, + anon_sym_as, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 13, + anon_sym_async, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33809] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(515), 7, anon_sym_LPAREN, anon_sym_CARET, aux_sym_command_argument_token2, @@ -32050,7 +32231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(1168), 9, + ACTIONS(1170), 9, sym_identifier, sym_integer, aux_sym_float_token1, @@ -32060,14 +32241,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_nan, anon_sym_true, anon_sym_false, - [33650] = 3, + [33833] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(423), 3, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(514), 1, + sym_type, + STATE(601), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [33869] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1064), 1, + anon_sym_as, + STATE(199), 1, + sym_math_operator, + STATE(235), 1, + sym_logic_operator, + ACTIONS(399), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(397), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [33901] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(429), 3, anon_sym_as, anon_sym_GT, anon_sym_LT, - ACTIONS(421), 13, + ACTIONS(427), 13, anon_sym_async, anon_sym_LBRACE, anon_sym_PLUS, @@ -32081,13 +32314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33674] = 3, + [33925] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(443), 2, + ACTIONS(437), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(441), 14, + ACTIONS(435), 14, anon_sym_RPAREN, anon_sym_as, anon_sym_LBRACE, @@ -32102,43 +32335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33698] = 9, + [33949] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(458), 1, - sym_type, - STATE(545), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33734] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1170), 1, - anon_sym_LT, - ACTIONS(423), 2, - anon_sym_as, + ACTIONS(447), 2, anon_sym_GT, - ACTIONS(421), 13, - anon_sym_async, + anon_sym_LT, + ACTIONS(445), 14, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_DASH, @@ -32151,24 +32356,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33760] = 9, + [33973] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1050), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1050), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(458), 1, + STATE(514), 1, sym_type, - STATE(564), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, + STATE(567), 1, + aux_sym_type_repeat2, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32178,694 +32383,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [33796] = 9, + [34009] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(429), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(427), 14, + anon_sym_RPAREN, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(458), 1, - sym_type, - STATE(544), 1, - aux_sym_type_repeat1, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33832] = 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34033] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - sym_identifier, ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(466), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33865] = 8, - ACTIONS(3), 1, - sym__comment, ACTIONS(1172), 1, sym_identifier, ACTIONS(1174), 1, anon_sym_LPAREN, + STATE(804), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34066] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(537), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34099] = 8, + ACTIONS(3), 1, + sym__comment, ACTIONS(1176), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(1178), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(1180), 1, + anon_sym_LBRACE, ACTIONS(1182), 1, - anon_sym_list, - STATE(616), 1, - sym_type, - ACTIONS(1180), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33898] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1184), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(1186), 1, - anon_sym_LPAREN, - ACTIONS(1188), 1, - anon_sym_LBRACE, - ACTIONS(1190), 1, - anon_sym_LBRACK, - ACTIONS(1194), 1, - anon_sym_list, - STATE(464), 1, - sym_type, - ACTIONS(1192), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33931] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1196), 1, - sym_identifier, - ACTIONS(1198), 1, - anon_sym_LPAREN, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LBRACK, - ACTIONS(1206), 1, - anon_sym_list, - STATE(243), 1, - sym_type, - ACTIONS(1204), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33964] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1196), 1, - sym_identifier, - ACTIONS(1198), 1, - anon_sym_LPAREN, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LBRACK, - ACTIONS(1206), 1, - anon_sym_list, - STATE(257), 1, - sym_type, - ACTIONS(1204), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [33997] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(845), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34030] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1208), 1, - anon_sym_RPAREN, - ACTIONS(449), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34055] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1210), 1, - sym_identifier, - ACTIONS(1212), 1, - anon_sym_LPAREN, - ACTIONS(1214), 1, - anon_sym_LBRACE, - ACTIONS(1216), 1, - anon_sym_LBRACK, - ACTIONS(1220), 1, - anon_sym_list, - STATE(132), 1, - sym_type, - ACTIONS(1218), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34088] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(797), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34121] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1222), 1, - anon_sym_RPAREN, - ACTIONS(449), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34146] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1224), 1, - sym_identifier, - ACTIONS(1226), 1, - anon_sym_LPAREN, - ACTIONS(1228), 1, - anon_sym_LBRACE, - ACTIONS(1230), 1, - anon_sym_LBRACK, - ACTIONS(1234), 1, - anon_sym_list, - STATE(602), 1, - sym_type, - ACTIONS(1232), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34179] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1236), 1, - anon_sym_RPAREN, - ACTIONS(449), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34204] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 1, - anon_sym_RPAREN, - ACTIONS(449), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34229] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(847), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34262] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1172), 1, - sym_identifier, - ACTIONS(1174), 1, - anon_sym_LPAREN, - ACTIONS(1176), 1, - anon_sym_LBRACE, - ACTIONS(1178), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_list, - STATE(597), 1, - sym_type, - ACTIONS(1180), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34295] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(835), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34328] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(807), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34361] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1210), 1, - sym_identifier, - ACTIONS(1212), 1, - anon_sym_LPAREN, - ACTIONS(1214), 1, - anon_sym_LBRACE, - ACTIONS(1216), 1, - anon_sym_LBRACK, - ACTIONS(1220), 1, - anon_sym_list, - STATE(131), 1, - sym_type, - ACTIONS(1218), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34394] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(790), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34427] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1210), 1, - sym_identifier, - ACTIONS(1212), 1, - anon_sym_LPAREN, - ACTIONS(1214), 1, - anon_sym_LBRACE, - ACTIONS(1216), 1, - anon_sym_LBRACK, - ACTIONS(1220), 1, - anon_sym_list, - STATE(127), 1, - sym_type, - ACTIONS(1218), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34460] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(799), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34493] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1048), 1, - sym_identifier, - ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, - anon_sym_LBRACE, - ACTIONS(1056), 1, - anon_sym_LBRACK, - ACTIONS(1060), 1, - anon_sym_list, - STATE(815), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34526] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1184), 1, - sym_identifier, - ACTIONS(1186), 1, - anon_sym_LPAREN, - ACTIONS(1188), 1, - anon_sym_LBRACE, - ACTIONS(1190), 1, - anon_sym_LBRACK, - ACTIONS(1194), 1, - anon_sym_list, - STATE(494), 1, - sym_type, - ACTIONS(1192), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34559] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1240), 1, - anon_sym_RPAREN, - ACTIONS(449), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(447), 12, - anon_sym_as, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34584] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1196), 1, - sym_identifier, - ACTIONS(1198), 1, - anon_sym_LPAREN, - ACTIONS(1200), 1, - anon_sym_LBRACE, - ACTIONS(1202), 1, - anon_sym_LBRACK, - ACTIONS(1206), 1, - anon_sym_list, - STATE(250), 1, - sym_type, - ACTIONS(1204), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34617] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1244), 6, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(1242), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [34640] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1248), 6, - anon_sym_LPAREN, - anon_sym_CARET, - aux_sym_command_argument_token2, - anon_sym_LBRACE, - sym_range, - anon_sym_LBRACK, - ACTIONS(1246), 9, - sym_identifier, - sym_integer, - aux_sym_float_token1, - anon_sym_Infinity, - anon_sym_infinity, - anon_sym_NaN, - anon_sym_nan, - anon_sym_true, - anon_sym_false, - [34663] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1224), 1, - sym_identifier, - ACTIONS(1226), 1, - anon_sym_LPAREN, - ACTIONS(1228), 1, - anon_sym_LBRACE, - ACTIONS(1230), 1, - anon_sym_LBRACK, - ACTIONS(1234), 1, anon_sym_list, STATE(620), 1, sym_type, - ACTIONS(1232), 9, + ACTIONS(1184), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32875,72 +32479,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [34696] = 8, + [34132] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(1190), 6, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(1188), 9, sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [34155] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1192), 1, + sym_identifier, + ACTIONS(1194), 1, + anon_sym_LPAREN, + ACTIONS(1196), 1, + anon_sym_LBRACE, + ACTIONS(1198), 1, + anon_sym_LBRACK, + ACTIONS(1202), 1, + anon_sym_list, + STATE(251), 1, + sym_type, + ACTIONS(1200), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34188] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1204), 1, + sym_identifier, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1214), 1, + anon_sym_list, + STATE(608), 1, + sym_type, + ACTIONS(1212), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34221] = 8, + ACTIONS(3), 1, + sym__comment, ACTIONS(1050), 1, - anon_sym_LPAREN, - ACTIONS(1054), 1, anon_sym_LBRACE, - ACTIONS(1056), 1, + ACTIONS(1052), 1, anon_sym_LBRACK, - ACTIONS(1060), 1, + ACTIONS(1058), 1, anon_sym_list, - STATE(465), 1, - sym_type, - ACTIONS(1058), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34729] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1224), 1, - sym_identifier, - ACTIONS(1226), 1, - anon_sym_LPAREN, - ACTIONS(1228), 1, - anon_sym_LBRACE, - ACTIONS(1230), 1, - anon_sym_LBRACK, - ACTIONS(1234), 1, - anon_sym_list, - STATE(603), 1, - sym_type, - ACTIONS(1232), 9, - anon_sym_any, - anon_sym_bool, - anon_sym_collection, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_none, - anon_sym_num, - anon_sym_str, - [34762] = 8, - ACTIONS(3), 1, - sym__comment, ACTIONS(1172), 1, sym_identifier, ACTIONS(1174), 1, anon_sym_LPAREN, - ACTIONS(1176), 1, - anon_sym_LBRACE, - ACTIONS(1178), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_list, - STATE(609), 1, + STATE(800), 1, sym_type, - ACTIONS(1180), 9, + ACTIONS(1056), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32950,22 +32574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [34795] = 8, + [34254] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1184), 1, + ACTIONS(1216), 1, sym_identifier, - ACTIONS(1186), 1, + ACTIONS(1218), 1, anon_sym_LPAREN, - ACTIONS(1188), 1, + ACTIONS(1220), 1, anon_sym_LBRACE, - ACTIONS(1190), 1, + ACTIONS(1222), 1, anon_sym_LBRACK, - ACTIONS(1194), 1, + ACTIONS(1226), 1, anon_sym_list, - STATE(451), 1, + STATE(499), 1, sym_type, - ACTIONS(1192), 9, + ACTIONS(1224), 9, anon_sym_any, anon_sym_bool, anon_sym_collection, @@ -32975,126 +32599,774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_num, anon_sym_str, - [34828] = 5, - ACTIONS(353), 1, + [34287] = 8, + ACTIONS(3), 1, sym__comment, - ACTIONS(371), 2, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34320] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1216), 1, + sym_identifier, + ACTIONS(1218), 1, + anon_sym_LPAREN, + ACTIONS(1220), 1, + anon_sym_LBRACE, + ACTIONS(1222), 1, + anon_sym_LBRACK, + ACTIONS(1226), 1, + anon_sym_list, + STATE(463), 1, + sym_type, + ACTIONS(1224), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34353] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34386] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1228), 1, + anon_sym_RPAREN, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34411] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1176), 1, + sym_identifier, + ACTIONS(1178), 1, + anon_sym_LPAREN, + ACTIONS(1180), 1, + anon_sym_LBRACE, + ACTIONS(1182), 1, + anon_sym_LBRACK, + ACTIONS(1186), 1, + anon_sym_list, + STATE(634), 1, + sym_type, + ACTIONS(1184), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34444] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1192), 1, + sym_identifier, + ACTIONS(1194), 1, + anon_sym_LPAREN, + ACTIONS(1196), 1, + anon_sym_LBRACE, + ACTIONS(1198), 1, + anon_sym_LBRACK, + ACTIONS(1202), 1, + anon_sym_list, + STATE(259), 1, + sym_type, + ACTIONS(1200), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34477] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1192), 1, + sym_identifier, + ACTIONS(1194), 1, + anon_sym_LPAREN, + ACTIONS(1196), 1, + anon_sym_LBRACE, + ACTIONS(1198), 1, + anon_sym_LBRACK, + ACTIONS(1202), 1, + anon_sym_list, + STATE(253), 1, + sym_type, + ACTIONS(1200), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34510] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1230), 1, + anon_sym_RPAREN, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34535] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(855), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34568] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1232), 1, + sym_identifier, + ACTIONS(1234), 1, + anon_sym_LPAREN, + ACTIONS(1236), 1, + anon_sym_LBRACE, + ACTIONS(1238), 1, + anon_sym_LBRACK, + ACTIONS(1242), 1, + anon_sym_list, + STATE(126), 1, + sym_type, + ACTIONS(1240), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34601] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1176), 1, + sym_identifier, + ACTIONS(1178), 1, + anon_sym_LPAREN, + ACTIONS(1180), 1, + anon_sym_LBRACE, + ACTIONS(1182), 1, + anon_sym_LBRACK, + ACTIONS(1186), 1, + anon_sym_list, + STATE(632), 1, + sym_type, + ACTIONS(1184), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34634] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(537), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34667] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1244), 1, + anon_sym_RPAREN, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34692] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1232), 1, + sym_identifier, + ACTIONS(1234), 1, + anon_sym_LPAREN, + ACTIONS(1236), 1, + anon_sym_LBRACE, + ACTIONS(1238), 1, + anon_sym_LBRACK, + ACTIONS(1242), 1, + anon_sym_list, + STATE(134), 1, + sym_type, + ACTIONS(1240), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34725] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1204), 1, + sym_identifier, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1214), 1, + anon_sym_list, + STATE(605), 1, + sym_type, + ACTIONS(1212), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34758] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(827), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34791] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1246), 1, + anon_sym_RPAREN, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34816] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1248), 1, + anon_sym_RPAREN, + ACTIONS(451), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(449), 12, + anon_sym_as, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [34841] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1204), 1, + sym_identifier, + ACTIONS(1206), 1, + anon_sym_LPAREN, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1214), 1, + anon_sym_list, + STATE(630), 1, + sym_type, + ACTIONS(1212), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34874] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(836), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34907] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34940] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1216), 1, + sym_identifier, + ACTIONS(1218), 1, + anon_sym_LPAREN, + ACTIONS(1220), 1, + anon_sym_LBRACE, + ACTIONS(1222), 1, + anon_sym_LBRACK, + ACTIONS(1226), 1, + anon_sym_list, + STATE(498), 1, + sym_type, + ACTIONS(1224), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [34973] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1252), 6, + anon_sym_LPAREN, + anon_sym_CARET, + aux_sym_command_argument_token2, + anon_sym_LBRACE, + sym_range, + anon_sym_LBRACK, + ACTIONS(1250), 9, + sym_identifier, + sym_integer, + aux_sym_float_token1, + anon_sym_Infinity, + anon_sym_infinity, + anon_sym_NaN, + anon_sym_nan, + anon_sym_true, + anon_sym_false, + [34996] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + STATE(536), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [35029] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1050), 1, + anon_sym_LBRACE, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1058), 1, + anon_sym_list, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1174), 1, + anon_sym_LPAREN, + STATE(536), 1, + sym_type, + ACTIONS(1056), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [35062] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1232), 1, + sym_identifier, + ACTIONS(1234), 1, + anon_sym_LPAREN, + ACTIONS(1236), 1, + anon_sym_LBRACE, + ACTIONS(1238), 1, + anon_sym_LBRACK, + ACTIONS(1242), 1, + anon_sym_list, + STATE(136), 1, + sym_type, + ACTIONS(1240), 9, + anon_sym_any, + anon_sym_bool, + anon_sym_collection, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_none, + anon_sym_num, + anon_sym_str, + [35095] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(363), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(1250), 2, + ACTIONS(1254), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(664), 2, + STATE(670), 2, sym_command_argument, aux_sym_command_repeat1, - ACTIONS(369), 3, + ACTIONS(365), 3, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, - [34849] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(355), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1250), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(662), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(351), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [34870] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1252), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(664), 2, - sym_command_argument, - aux_sym_command_repeat1, - ACTIONS(361), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [34891] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(351), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(355), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1255), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(666), 2, - sym_command_argument, - aux_sym_command_repeat1, - [34911] = 5, - ACTIONS(353), 1, + [35116] = 5, + ACTIONS(355), 1, sym__comment, ACTIONS(369), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1254), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(671), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(371), 3, + anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, + [35137] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(351), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(1256), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(671), 2, + sym_command_argument, + aux_sym_command_repeat1, + ACTIONS(353), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [35158] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(351), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(353), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(1259), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(672), 2, + sym_command_argument, + aux_sym_command_repeat1, + [35178] = 5, + ACTIONS(355), 1, + sym__comment, + ACTIONS(369), 2, + anon_sym_SEMI, + anon_sym_PIPE, ACTIONS(371), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(1255), 2, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - STATE(667), 2, - sym_command_argument, - aux_sym_command_repeat1, - [34931] = 5, - ACTIONS(353), 1, - sym__comment, - ACTIONS(359), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(361), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(1257), 2, + ACTIONS(1262), 2, aux_sym_command_argument_token1, aux_sym_command_argument_token2, - STATE(667), 2, + STATE(672), 2, sym_command_argument, aux_sym_command_repeat1, - [34951] = 3, - ACTIONS(353), 1, + [35198] = 5, + ACTIONS(355), 1, sym__comment, - ACTIONS(397), 2, + ACTIONS(363), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(399), 5, + ACTIONS(365), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(1262), 2, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + STATE(673), 2, + sym_command_argument, + aux_sym_command_repeat1, + [35218] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(403), 5, anon_sym_COMMA, aux_sym_command_argument_token1, aux_sym_command_argument_token2, anon_sym_RBRACE, sym_identifier, - [34966] = 6, + [35233] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(1264), 1, + anon_sym_PIPE, + ACTIONS(778), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [35249] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(265), 1, anon_sym_COLON, - ACTIONS(1260), 1, + ACTIONS(1266), 1, anon_sym_LT, - ACTIONS(1262), 1, + ACTIONS(1268), 1, anon_sym_COLON_COLON, - STATE(735), 1, + STATE(743), 1, sym_type_specification, ACTIONS(261), 2, anon_sym_LPAREN, anon_sym_RPAREN, - [34986] = 2, + [35269] = 3, + ACTIONS(355), 1, + sym__comment, + ACTIONS(401), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(403), 4, + aux_sym_command_argument_token1, + aux_sym_command_argument_token2, + anon_sym_RBRACE, + sym_identifier, + [35283] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(375), 6, @@ -33104,7 +33376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, sym_identifier, - [34998] = 2, + [35295] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(379), 6, @@ -33114,109 +33386,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, sym_identifier, - [35010] = 3, - ACTIONS(353), 1, - sym__comment, - ACTIONS(397), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(399), 4, - aux_sym_command_argument_token1, - aux_sym_command_argument_token2, - anon_sym_RBRACE, - sym_identifier, - [35024] = 4, + [35307] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(1264), 1, - anon_sym_PIPE, - ACTIONS(784), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [35040] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, - ACTIONS(1266), 1, - anon_sym_PIPE, - ACTIONS(784), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - sym_identifier, - [35055] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1264), 1, - anon_sym_PIPE, - ACTIONS(784), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - [35068] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 5, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [35079] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(946), 1, - anon_sym_LT, - ACTIONS(1272), 1, - anon_sym_COMMA, - STATE(719), 1, - sym_type_arguments, - ACTIONS(1270), 2, - anon_sym_RBRACE, - sym_identifier, - [35096] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1268), 5, + ACTIONS(1270), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, sym_identifier, anon_sym_EQ, - [35107] = 4, + [35318] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1274), 1, + ACTIONS(1264), 1, + anon_sym_PIPE, + ACTIONS(778), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + [35331] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_PIPE, + ACTIONS(778), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + sym_identifier, + [35346] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(946), 1, + anon_sym_LT, + ACTIONS(1276), 1, + anon_sym_COMMA, + STATE(700), 1, + sym_type_arguments, + ACTIONS(1274), 2, + anon_sym_RBRACE, + sym_identifier, + [35363] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1270), 5, + anon_sym_async, + anon_sym_LBRACE, anon_sym_EQ, - STATE(64), 1, - sym_assignment_operator, - ACTIONS(269), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35121] = 3, + [35374] = 3, ACTIONS(3), 1, sym__comment, - STATE(64), 1, + STATE(57), 1, sym_assignment_operator, ACTIONS(269), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35133] = 3, + [35386] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1266), 1, - anon_sym_PIPE, - ACTIONS(784), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - sym_identifier, - [35145] = 3, + ACTIONS(1278), 1, + anon_sym_EQ, + STATE(48), 1, + sym_assignment_operator, + ACTIONS(269), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [35400] = 3, ACTIONS(3), 1, sym__comment, STATE(56), 1, @@ -33225,588 +33465,579 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35157] = 3, + [35412] = 3, ACTIONS(3), 1, sym__comment, - STATE(60), 1, + STATE(48), 1, sym_assignment_operator, ACTIONS(269), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35169] = 4, + [35424] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(265), 1, anon_sym_COLON, - ACTIONS(1262), 1, + ACTIONS(1268), 1, anon_sym_COLON_COLON, ACTIONS(319), 2, anon_sym_LPAREN, anon_sym_RPAREN, - [35183] = 3, + [35438] = 3, ACTIONS(3), 1, sym__comment, - STATE(61), 1, + STATE(53), 1, sym_assignment_operator, ACTIONS(269), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35195] = 3, + [35450] = 3, ACTIONS(3), 1, sym__comment, - STATE(52), 1, + STATE(65), 1, sym_assignment_operator, ACTIONS(269), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35207] = 4, + [35462] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1278), 1, + ACTIONS(1272), 1, + anon_sym_PIPE, + ACTIONS(778), 3, + anon_sym_SEMI, anon_sym_RBRACE, - STATE(742), 1, - aux_sym_map_repeat1, - [35220] = 4, + sym_identifier, + [35474] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(642), 1, - anon_sym_LBRACE, ACTIONS(1280), 1, sym_identifier, - STATE(78), 1, - sym_map, - [35233] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1282), 1, + ACTIONS(1283), 1, anon_sym_RBRACE, - STATE(742), 1, - aux_sym_map_repeat1, - [35246] = 4, + STATE(694), 1, + aux_sym_type_repeat1, + [35487] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(1280), 1, + ACTIONS(1054), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, sym_identifier, - STATE(78), 1, - sym_map, - [35259] = 4, + STATE(694), 1, + aux_sym_type_repeat1, + [35500] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1284), 1, + ACTIONS(1287), 1, sym_identifier, - ACTIONS(1286), 1, + ACTIONS(1289), 1, anon_sym_RPAREN, - STATE(738), 1, + STATE(744), 1, aux_sym_function_repeat1, - [35272] = 4, + [35513] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1284), 1, - sym_identifier, - ACTIONS(1288), 1, - anon_sym_RPAREN, - STATE(738), 1, - aux_sym_function_repeat1, - [35285] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - sym_identifier, - STATE(78), 1, - sym_map, - [35298] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1292), 1, + ACTIONS(1291), 1, anon_sym_async, - ACTIONS(1294), 1, + ACTIONS(1293), 1, anon_sym_LBRACE, STATE(376), 1, sym_block, - [35311] = 4, + [35526] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1296), 1, + ACTIONS(1297), 1, + anon_sym_EQ, + ACTIONS(1295), 2, anon_sym_RBRACE, - STATE(689), 1, - aux_sym_map_repeat1, - [35324] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1284), 1, sym_identifier, - ACTIONS(1298), 1, - anon_sym_RPAREN, - STATE(738), 1, - aux_sym_function_repeat1, - [35337] = 4, + [35537] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1284), 1, + ACTIONS(1068), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, sym_identifier, - ACTIONS(1300), 1, - anon_sym_RPAREN, - STATE(738), 1, - aux_sym_function_repeat1, - [35350] = 4, + STATE(694), 1, + aux_sym_type_repeat1, + [35550] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1302), 1, + ACTIONS(1301), 1, + anon_sym_COMMA, + ACTIONS(1299), 2, + anon_sym_RBRACE, + sym_identifier, + [35561] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1291), 1, + anon_sym_async, + ACTIONS(1293), 1, + anon_sym_LBRACE, + STATE(370), 1, + sym_block, + [35574] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1287), 1, + sym_identifier, + ACTIONS(1303), 1, + anon_sym_RPAREN, + STATE(744), 1, + aux_sym_function_repeat1, + [35587] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1287), 1, sym_identifier, ACTIONS(1305), 1, - anon_sym_RBRACE, - STATE(698), 1, - aux_sym_struct_definition_repeat1, - [35363] = 4, + anon_sym_RPAREN, + STATE(744), 1, + aux_sym_function_repeat1, + [35600] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1307), 1, sym_identifier, - ACTIONS(1310), 1, + ACTIONS(1309), 1, anon_sym_RBRACE, - STATE(699), 1, - aux_sym_type_repeat2, - [35376] = 4, + STATE(746), 1, + aux_sym_map_repeat1, + [35613] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1292), 1, - anon_sym_async, - ACTIONS(1294), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_block, - [35389] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1284), 1, + ACTIONS(1287), 1, sym_identifier, - ACTIONS(1312), 1, + ACTIONS(1311), 1, anon_sym_RPAREN, - STATE(738), 1, + STATE(744), 1, aux_sym_function_repeat1, - [35402] = 4, + [35626] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1082), 1, - anon_sym_RBRACE, - ACTIONS(1314), 1, + ACTIONS(1307), 1, sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35415] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1076), 1, + ACTIONS(1313), 1, anon_sym_RBRACE, - ACTIONS(1314), 1, - sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35428] = 4, + STATE(734), 1, + aux_sym_map_repeat1, + [35639] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1316), 1, - anon_sym_async, - ACTIONS(1318), 1, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_RBRACE, + STATE(746), 1, + aux_sym_map_repeat1, + [35652] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(647), 1, anon_sym_LBRACE, - STATE(492), 1, - sym_block, - [35441] = 4, + ACTIONS(1317), 1, + sym_identifier, + STATE(373), 1, + sym_map, + [35665] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, sym_identifier, - ACTIONS(1320), 1, + STATE(78), 1, + sym_map, + [35678] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(713), 1, + anon_sym_LBRACE, + ACTIONS(1321), 1, + sym_identifier, + STATE(78), 1, + sym_map, + [35691] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1323), 1, anon_sym_RBRACE, STATE(707), 1, aux_sym_map_repeat1, - [35454] = 4, + [35704] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1322), 1, + ACTIONS(1295), 1, anon_sym_RBRACE, + ACTIONS(1325), 1, + sym_identifier, + STATE(712), 1, + aux_sym_struct_definition_repeat1, + [35717] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1330), 1, + anon_sym_COMMA, + ACTIONS(1328), 2, + anon_sym_RBRACE, + sym_identifier, + [35728] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(527), 1, + anon_sym_LBRACE, + ACTIONS(1332), 1, + sym_identifier, + STATE(454), 1, + sym_map, + [35741] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1334), 1, + anon_sym_RBRACE, + STATE(704), 1, + aux_sym_map_repeat1, + [35754] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1088), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, + sym_identifier, + STATE(694), 1, + aux_sym_type_repeat1, + [35767] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1287), 1, + sym_identifier, + ACTIONS(1336), 1, + anon_sym_RPAREN, STATE(744), 1, - aux_sym_map_repeat1, - [35467] = 4, + aux_sym_function_repeat1, + [35780] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, + ACTIONS(969), 1, + anon_sym_async, + ACTIONS(971), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym_block, + [35793] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1338), 1, + anon_sym_async, + ACTIONS(1340), 1, + anon_sym_LBRACE, + STATE(507), 1, + sym_block, + [35806] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1342), 1, sym_identifier, - ACTIONS(1324), 1, + ACTIONS(1344), 1, anon_sym_RBRACE, - STATE(742), 1, + STATE(730), 1, + aux_sym_struct_definition_repeat1, + [35819] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1338), 1, + anon_sym_async, + ACTIONS(1340), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_block, + [35832] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1158), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, + sym_identifier, + STATE(694), 1, + aux_sym_type_repeat1, + [35845] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1342), 1, + sym_identifier, + ACTIONS(1346), 1, + anon_sym_RBRACE, + STATE(712), 1, + aux_sym_struct_definition_repeat1, + [35858] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1266), 1, + anon_sym_LT, + ACTIONS(1348), 1, + anon_sym_EQ, + STATE(698), 1, + sym_type_specification, + [35871] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1096), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, + sym_identifier, + STATE(694), 1, + aux_sym_type_repeat1, + [35884] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1350), 1, + sym_identifier, + ACTIONS(1352), 1, + anon_sym_RBRACE, + STATE(745), 1, + aux_sym_enum_definition_repeat1, + [35897] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1354), 1, + anon_sym_async, + ACTIONS(1356), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_block, + [35910] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1287), 1, + sym_identifier, + ACTIONS(1358), 1, + anon_sym_RPAREN, + STATE(744), 1, + aux_sym_function_repeat1, + [35923] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1350), 1, + sym_identifier, + ACTIONS(1360), 1, + anon_sym_RBRACE, + STATE(745), 1, + aux_sym_enum_definition_repeat1, + [35936] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1342), 1, + sym_identifier, + ACTIONS(1362), 1, + anon_sym_RBRACE, + STATE(712), 1, + aux_sym_struct_definition_repeat1, + [35949] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1364), 1, + anon_sym_RBRACE, + STATE(746), 1, aux_sym_map_repeat1, - [35480] = 4, + [35962] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + sym_identifier, + STATE(78), 1, + sym_map, + [35975] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1366), 1, + anon_sym_RBRACE, + STATE(757), 1, + aux_sym_map_repeat1, + [35988] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1368), 1, + anon_sym_RBRACE, + STATE(746), 1, + aux_sym_map_repeat1, + [36001] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(467), 1, anon_sym_LBRACE, - ACTIONS(1326), 1, + ACTIONS(1370), 1, sym_identifier, - STATE(450), 1, + STATE(161), 1, sym_map, - [35493] = 4, + [36014] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1316), 1, + ACTIONS(1372), 1, anon_sym_async, - ACTIONS(1318), 1, + ACTIONS(1374), 1, anon_sym_LBRACE, - STATE(516), 1, + STATE(153), 1, sym_block, - [35506] = 4, + [36027] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(638), 1, - anon_sym_LBRACE, - ACTIONS(1328), 1, - sym_identifier, - STATE(358), 1, - sym_map, - [35519] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1332), 1, - anon_sym_COMMA, - ACTIONS(1330), 2, - anon_sym_RBRACE, - sym_identifier, - [35530] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1334), 1, - anon_sym_EQ, - ACTIONS(1305), 2, - anon_sym_RBRACE, - sym_identifier, - [35541] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(965), 1, - anon_sym_async, - ACTIONS(967), 1, - anon_sym_LBRACE, - STATE(525), 1, - sym_block, - [35554] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1284), 1, - sym_identifier, - ACTIONS(1336), 1, - anon_sym_RPAREN, - STATE(738), 1, - aux_sym_function_repeat1, - [35567] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(622), 1, - anon_sym_LBRACE, - ACTIONS(1338), 1, - sym_identifier, - STATE(536), 1, - sym_map, - [35580] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1340), 1, - anon_sym_RBRACE, - STATE(742), 1, - aux_sym_map_repeat1, - [35593] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1108), 1, - anon_sym_RBRACE, - ACTIONS(1314), 1, - sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35606] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1342), 1, - anon_sym_RBRACE, - STATE(687), 1, - aux_sym_map_repeat1, - [35619] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1346), 1, - anon_sym_COMMA, - ACTIONS(1344), 2, - anon_sym_RBRACE, - sym_identifier, - [35630] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1350), 1, - anon_sym_RBRACE, - STATE(698), 1, - aux_sym_struct_definition_repeat1, - [35643] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1352), 1, - anon_sym_async, ACTIONS(1354), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_block, - [35656] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1348), 1, - sym_identifier, + anon_sym_async, ACTIONS(1356), 1, - anon_sym_RBRACE, - STATE(740), 1, - aux_sym_struct_definition_repeat1, - [35669] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1260), 1, - anon_sym_LT, - ACTIONS(1358), 1, - anon_sym_EQ, - STATE(712), 1, - sym_type_specification, - [35682] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1360), 1, - sym_identifier, - ACTIONS(1362), 1, - anon_sym_RBRACE, - STATE(751), 1, - aux_sym_enum_definition_repeat1, - [35695] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1352), 1, - anon_sym_async, - ACTIONS(1354), 1, anon_sym_LBRACE, - STATE(510), 1, + STATE(461), 1, sym_block, - [35708] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1146), 1, - anon_sym_RBRACE, - ACTIONS(1314), 1, - sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35721] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1360), 1, - sym_identifier, - ACTIONS(1364), 1, - anon_sym_RBRACE, - STATE(751), 1, - aux_sym_enum_definition_repeat1, - [35734] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(743), 1, - anon_sym_RPAREN, - ACTIONS(1284), 1, - sym_identifier, - STATE(691), 1, - aux_sym_function_repeat1, - [35747] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1000), 1, - anon_sym_async, - ACTIONS(1002), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_block, - [35760] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1366), 1, - anon_sym_async, - ACTIONS(1368), 1, - anon_sym_LBRACE, - STATE(86), 1, - sym_block, - [35773] = 4, + [36040] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1118), 1, anon_sym_RBRACE, - ACTIONS(1314), 1, + ACTIONS(1285), 1, sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35786] = 4, + STATE(694), 1, + aux_sym_type_repeat1, + [36053] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1370), 1, - anon_sym_async, ACTIONS(1372), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_block, - [35799] = 4, - ACTIONS(3), 1, - sym__comment, + anon_sym_async, ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(794), 1, - sym_type_specification, - [35812] = 4, + anon_sym_LBRACE, + STATE(146), 1, + sym_block, + [36066] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1122), 1, - anon_sym_RBRACE, - ACTIONS(1314), 1, - sym_identifier, - STATE(699), 1, - aux_sym_type_repeat2, - [35825] = 3, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(993), 1, + anon_sym_LBRACE, + STATE(338), 1, + sym_block, + [36079] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1376), 1, + anon_sym_async, + ACTIONS(1378), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_block, + [36092] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1380), 1, - anon_sym_COMMA, - ACTIONS(1378), 2, - anon_sym_RPAREN, - sym_identifier, - [35836] = 4, + anon_sym_EQ, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(832), 1, + sym_type_specification, + [36105] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1370), 1, - anon_sym_async, - ACTIONS(1372), 1, - anon_sym_LBRACE, - STATE(156), 1, - sym_block, - [35849] = 3, + ACTIONS(1386), 1, + anon_sym_COMMA, + ACTIONS(1384), 2, + anon_sym_RPAREN, + sym_identifier, + [36116] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1384), 1, - anon_sym_COMMA, - ACTIONS(1382), 2, - anon_sym_RBRACE, - sym_identifier, - [35860] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1378), 1, anon_sym_RPAREN, - ACTIONS(1386), 1, + ACTIONS(1388), 1, sym_identifier, - STATE(738), 1, + STATE(744), 1, aux_sym_function_repeat1, - [35873] = 4, + [36129] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1366), 1, - anon_sym_async, - ACTIONS(1368), 1, - anon_sym_LBRACE, - STATE(79), 1, - sym_block, - [35886] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1348), 1, - sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1299), 1, anon_sym_RBRACE, - STATE(698), 1, - aux_sym_struct_definition_repeat1, - [35899] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1000), 1, - anon_sym_async, ACTIONS(1391), 1, - anon_sym_LBRACE, - STATE(79), 1, - sym_block, - [35912] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1393), 1, sym_identifier, - ACTIONS(1396), 1, - anon_sym_RBRACE, - STATE(742), 1, - aux_sym_map_repeat1, - [35925] = 4, + STATE(745), 1, + aux_sym_enum_definition_repeat1, + [36142] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1000), 1, + ACTIONS(1394), 1, + sym_identifier, + ACTIONS(1397), 1, + anon_sym_RBRACE, + STATE(746), 1, + aux_sym_map_repeat1, + [36155] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(991), 1, anon_sym_async, - ACTIONS(1391), 1, + ACTIONS(1399), 1, anon_sym_LBRACE, - STATE(86), 1, + STATE(89), 1, sym_block, - [35938] = 4, + [36168] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1398), 1, + ACTIONS(1403), 1, + anon_sym_COMMA, + ACTIONS(1401), 2, anon_sym_RBRACE, - STATE(742), 1, - aux_sym_map_repeat1, - [35951] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1276), 1, sym_identifier, - ACTIONS(1400), 1, - anon_sym_RBRACE, - STATE(716), 1, - aux_sym_map_repeat1, - [35964] = 4, + [36179] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1276), 1, - sym_identifier, - ACTIONS(1320), 1, - anon_sym_RBRACE, - STATE(687), 1, - aux_sym_map_repeat1, - [35977] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(483), 1, + ACTIONS(1376), 1, + anon_sym_async, + ACTIONS(1378), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + STATE(89), 1, + sym_block, + [36192] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(417), 1, + anon_sym_GT, + ACTIONS(721), 1, + anon_sym_LT, + STATE(539), 1, + sym_type_arguments, + [36205] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(743), 1, + anon_sym_RPAREN, + ACTIONS(1287), 1, sym_identifier, - STATE(157), 1, - sym_map, - [35990] = 3, + STATE(696), 1, + aux_sym_function_repeat1, + [36218] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1405), 1, + anon_sym_RBRACE, + STATE(731), 1, + aux_sym_map_repeat1, + [36231] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(319), 1, @@ -33814,604 +34045,645 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(261), 2, anon_sym_LPAREN, anon_sym_RPAREN, - [36001] = 4, + [36242] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, ACTIONS(265), 1, anon_sym_COLON, - ACTIONS(1262), 1, + ACTIONS(1268), 1, anon_sym_COLON_COLON, - [36014] = 4, + [36255] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1348), 1, + ACTIONS(1342), 1, sym_identifier, - ACTIONS(1404), 1, + ACTIONS(1407), 1, anon_sym_RBRACE, - STATE(720), 1, + STATE(723), 1, aux_sym_struct_definition_repeat1, - [36027] = 4, + [36268] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1344), 1, - anon_sym_RBRACE, - ACTIONS(1406), 1, + ACTIONS(991), 1, + anon_sym_async, + ACTIONS(1399), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_block, + [36281] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, sym_identifier, - STATE(751), 1, - aux_sym_enum_definition_repeat1, - [36040] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, ACTIONS(1409), 1, - anon_sym_RPAREN, - [36050] = 3, + anon_sym_RBRACE, + STATE(746), 1, + aux_sym_map_repeat1, + [36294] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(736), 1, - sym_type_specification, - [36060] = 3, + ACTIONS(633), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + sym_identifier, + STATE(471), 1, + sym_map, + [36307] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(1323), 1, + anon_sym_RBRACE, + STATE(731), 1, + aux_sym_map_repeat1, + [36320] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(1411), 1, + ACTIONS(1413), 1, anon_sym_RPAREN, - [36070] = 2, + [36330] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1413), 2, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(719), 1, + sym_type_specification, + [36340] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(261), 1, + anon_sym_LPAREN, + ACTIONS(1415), 1, anon_sym_RPAREN, + [36350] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1299), 2, + anon_sym_RBRACE, sym_identifier, - [36078] = 3, + [36358] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(741), 1, - sym_type_specification, - [36088] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(743), 1, - sym_type_specification, - [36098] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1360), 1, + ACTIONS(1350), 1, sym_identifier, - STATE(724), 1, + STATE(726), 1, aux_sym_enum_definition_repeat1, - [36108] = 3, + [36368] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(730), 1, - sym_type_specification, - [36118] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1314), 1, + ACTIONS(1283), 2, + anon_sym_RBRACE, sym_identifier, - STATE(717), 1, - aux_sym_type_repeat2, - [36128] = 3, + [36376] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1376), 1, + ACTIONS(1382), 1, anon_sym_LT, STATE(721), 1, sym_type_specification, - [36138] = 2, + [36386] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1415), 2, - anon_sym_RBRACE, + ACTIONS(1285), 1, sym_identifier, - [36146] = 2, + STATE(722), 1, + aux_sym_type_repeat1, + [36396] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1310), 2, - anon_sym_RBRACE, - sym_identifier, - [36154] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(725), 1, - sym_type_specification, - [36164] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1314), 1, - sym_identifier, - STATE(726), 1, - aux_sym_type_repeat2, - [36174] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1314), 1, - sym_identifier, - STATE(734), 1, - aux_sym_type_repeat2, - [36184] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1360), 1, - sym_identifier, - STATE(727), 1, - aux_sym_enum_definition_repeat1, - [36194] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1314), 1, - sym_identifier, - STATE(702), 1, - aux_sym_type_repeat2, - [36204] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(261), 1, - anon_sym_LPAREN, + ACTIONS(411), 1, + anon_sym_GT, ACTIONS(1417), 1, - anon_sym_RPAREN, - [36214] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1344), 2, - anon_sym_RBRACE, - sym_identifier, - [36222] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(700), 1, - sym_type_specification, - [36232] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(694), 1, - sym_type_specification, - [36242] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1421), 1, anon_sym_DASH_GT, - [36252] = 2, + [36406] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1330), 2, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(741), 1, + sym_type_specification, + [36416] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1350), 1, + sym_identifier, + STATE(729), 1, + aux_sym_enum_definition_repeat1, + [36426] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1419), 2, anon_sym_RBRACE, sym_identifier, - [36260] = 3, + [36434] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1421), 2, + anon_sym_RPAREN, + sym_identifier, + [36442] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(747), 1, + sym_type_specification, + [36452] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1328), 2, + anon_sym_RBRACE, + sym_identifier, + [36460] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(756), 1, + sym_type_specification, + [36470] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + sym_identifier, + STATE(738), 1, + aux_sym_type_repeat1, + [36480] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + sym_identifier, + STATE(725), 1, + aux_sym_type_repeat1, + [36490] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1423), 2, + anon_sym_RBRACE, + sym_identifier, + [36498] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + sym_identifier, + STATE(716), 1, + aux_sym_type_repeat1, + [36508] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1425), 1, + anon_sym_LPAREN, + ACTIONS(1427), 1, + anon_sym_RPAREN, + [36518] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1266), 1, + anon_sym_LT, + STATE(743), 1, + sym_type_specification, + [36528] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(749), 1, + sym_type_specification, + [36538] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, - ACTIONS(1423), 1, - anon_sym_RPAREN, - [36270] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1260), 1, - anon_sym_LT, - STATE(735), 1, - sym_type_specification, - [36280] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(739), 1, - sym_type_specification, - [36290] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1425), 2, - anon_sym_RBRACE, - sym_identifier, - [36298] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1314), 1, - sym_identifier, - STATE(703), 1, - aux_sym_type_repeat2, - [36308] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1260), 1, - anon_sym_LT, - STATE(763), 1, - sym_type_specification, - [36318] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(704), 1, - sym_type_specification, - [36328] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1376), 1, - anon_sym_LT, - STATE(709), 1, - sym_type_specification, - [36338] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1427), 1, - anon_sym_LPAREN, ACTIONS(1429), 1, anon_sym_RPAREN, - [36348] = 2, + [36548] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1431), 2, - anon_sym_RBRACE, + ACTIONS(1285), 1, sym_identifier, - [36356] = 2, + STATE(699), 1, + aux_sym_type_repeat1, + [36558] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(405), 1, + anon_sym_GT, + ACTIONS(1431), 1, + anon_sym_DASH_GT, + [36568] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(697), 1, + sym_type_specification, + [36578] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1433), 2, anon_sym_RBRACE, sym_identifier, - [36364] = 3, + [36586] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1376), 1, + ACTIONS(1266), 1, anon_sym_LT, - STATE(732), 1, + STATE(765), 1, sym_type_specification, - [36374] = 3, + [36596] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1314), 1, - sym_identifier, - STATE(731), 1, - aux_sym_type_repeat2, - [36384] = 3, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(701), 1, + sym_type_specification, + [36606] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(261), 1, anon_sym_LPAREN, ACTIONS(1435), 1, anon_sym_RPAREN, - [36394] = 2, + [36616] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1437), 1, + ACTIONS(261), 1, anon_sym_LPAREN, - [36401] = 2, + ACTIONS(1437), 1, + anon_sym_RPAREN, + [36626] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(1439), 1, - anon_sym_GT, - [36408] = 2, - ACTIONS(3), 1, - sym__comment, + anon_sym_LPAREN, ACTIONS(1441), 1, - anon_sym_LBRACE, - [36415] = 2, + anon_sym_DASH_GT, + [36636] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(1443), 1, - anon_sym_in, - [36422] = 2, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(727), 1, + sym_type_specification, + [36646] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(737), 1, + sym_type_specification, + [36656] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(736), 1, + sym_type_specification, + [36666] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1382), 1, + anon_sym_LT, + STATE(739), 1, + sym_type_specification, + [36676] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1285), 1, + sym_identifier, + STATE(695), 1, + aux_sym_type_repeat1, + [36686] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1443), 2, + anon_sym_RBRACE, + sym_identifier, + [36694] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1445), 1, - anon_sym_DASH_GT, - [36429] = 2, + anon_sym_LBRACE, + [36701] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1447), 1, - anon_sym_EQ, - [36436] = 2, + anon_sym_GT, + [36708] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1449), 1, - anon_sym_LBRACE, - [36443] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [36715] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1451), 1, - anon_sym_LPAREN, - [36450] = 2, + sym_command_text, + [36722] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1453), 1, - anon_sym_GT, - [36457] = 2, - ACTIONS(353), 1, - sym__comment, - ACTIONS(1455), 1, - sym_command_text, - [36464] = 2, + anon_sym_COLON_COLON, + [36729] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1110), 1, + ACTIONS(1455), 1, anon_sym_GT, - [36471] = 2, + [36736] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1457), 1, - anon_sym_COLON, - [36478] = 2, - ACTIONS(353), 1, + anon_sym_DASH_GT, + [36743] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1459), 1, - sym_command_text, - [36485] = 2, - ACTIONS(353), 1, + anon_sym_LBRACE, + [36750] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1461), 1, - sym_command_text, - [36492] = 2, + anon_sym_LPAREN, + [36757] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1463), 1, - anon_sym_COLON_COLON, - [36499] = 2, + anon_sym_LPAREN, + [36764] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1465), 1, anon_sym_LBRACE, - [36506] = 2, + [36771] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1467), 1, anon_sym_LPAREN, - [36513] = 2, - ACTIONS(353), 1, - sym__comment, - ACTIONS(1469), 1, - sym_command_text, - [36520] = 2, + [36778] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1116), 1, - anon_sym_GT, - [36527] = 2, - ACTIONS(353), 1, + ACTIONS(1425), 1, + anon_sym_LPAREN, + [36785] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1469), 1, + anon_sym_LPAREN, + [36792] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1471), 1, - sym_command_text, - [36534] = 2, - ACTIONS(353), 1, + anon_sym_LBRACE, + [36799] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1473), 1, - sym_command_text, - [36541] = 2, - ACTIONS(353), 1, + anon_sym_GT, + [36806] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1475), 1, - sym_command_text, - [36548] = 2, - ACTIONS(353), 1, + anon_sym_LBRACE, + [36813] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1477), 1, - sym_command_text, - [36555] = 2, - ACTIONS(353), 1, + anon_sym_LPAREN, + [36820] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1479), 1, sym_command_text, - [36562] = 2, - ACTIONS(3), 1, + [36827] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1481), 1, - anon_sym_LBRACE, - [36569] = 2, - ACTIONS(3), 1, + sym_command_text, + [36834] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1483), 1, - anon_sym_LPAREN, - [36576] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1136), 1, - anon_sym_GT, - [36583] = 2, - ACTIONS(353), 1, + sym_command_text, + [36841] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1485), 1, sym_command_text, - [36590] = 2, - ACTIONS(353), 1, + [36848] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1487), 1, - sym_command_text, - [36597] = 2, - ACTIONS(353), 1, + anon_sym_LPAREN, + [36855] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1489), 1, sym_command_text, - [36604] = 2, + [36862] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1491), 1, - anon_sym_COLON, - [36611] = 2, + anon_sym_LBRACE, + [36869] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1493), 1, - anon_sym_DASH_GT, - [36618] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN, + [36876] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1495), 1, - anon_sym_LBRACE, - [36625] = 2, - ACTIONS(3), 1, + sym_command_text, + [36883] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1497), 1, - anon_sym_LPAREN, - [36632] = 2, + sym_command_text, + [36890] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1499), 1, - anon_sym_LBRACE, - [36639] = 2, + anon_sym_GT, + [36897] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1501), 1, - anon_sym_COLON, - [36646] = 2, + anon_sym_LBRACE, + [36904] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1503), 1, - sym_identifier, - [36653] = 2, + anon_sym_in, + [36911] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1505), 1, - anon_sym_LBRACE, - [36660] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN, + [36918] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1507), 1, - anon_sym_LPAREN, - [36667] = 2, + sym_command_text, + [36925] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1509), 1, - anon_sym_LBRACE, - [36674] = 2, + anon_sym_EQ, + [36932] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1511), 1, - anon_sym_LPAREN, - [36681] = 2, + anon_sym_LBRACE, + [36939] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1513), 1, - anon_sym_LBRACE, - [36688] = 2, - ACTIONS(3), 1, + sym_identifier, + [36946] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1515), 1, - sym_identifier, - [36695] = 2, + sym_command_text, + [36953] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1517), 1, - anon_sym_LPAREN, - [36702] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1427), 1, - anon_sym_LPAREN, - [36709] = 2, - ACTIONS(3), 1, + anon_sym_GT, + [36960] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1519), 1, - anon_sym_COLON, - [36716] = 2, + sym_command_text, + [36967] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1084), 1, - anon_sym_GT, - [36723] = 2, - ACTIONS(353), 1, - sym__comment, ACTIONS(1521), 1, - sym_command_text, - [36730] = 2, + anon_sym_COLON, + [36974] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1523), 1, - anon_sym_in, - [36737] = 2, + anon_sym_LPAREN, + [36981] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1525), 1, - anon_sym_LBRACE, - [36744] = 2, + anon_sym_in, + [36988] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1527), 1, - anon_sym_LPAREN, - [36751] = 2, + anon_sym_LBRACE, + [36995] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1529), 1, anon_sym_COLON, - [36758] = 2, + [37002] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1531), 1, - ts_builtin_sym_end, - [36765] = 2, - ACTIONS(3), 1, + anon_sym_GT, + [37009] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1533), 1, - sym_identifier, - [36772] = 2, + sym_command_text, + [37016] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1535), 1, - sym_identifier, - [36779] = 2, + anon_sym_COLON, + [37023] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1537), 1, - sym_identifier, - [36786] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1072), 1, - anon_sym_GT, - [36793] = 2, - ACTIONS(353), 1, + anon_sym_DASH_GT, + [37030] = 2, + ACTIONS(355), 1, sym__comment, ACTIONS(1539), 1, sym_command_text, - [36800] = 2, + [37037] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1070), 1, - anon_sym_GT, - [36807] = 2, - ACTIONS(353), 1, - sym__comment, ACTIONS(1541), 1, - sym_command_text, - [36814] = 2, + anon_sym_COLON, + [37044] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1543), 1, - anon_sym_DASH_GT, - [36821] = 2, + ts_builtin_sym_end, + [37051] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1545), 1, - anon_sym_LBRACE, - [36828] = 2, + sym_identifier, + [37058] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1547), 1, - sym_identifier, - [36835] = 2, + anon_sym_COLON, + [37065] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1549), 1, - anon_sym_COLON, + sym_identifier, + [37072] = 2, + ACTIONS(355), 1, + sym__comment, + ACTIONS(1551), 1, + sym_command_text, + [37079] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1553), 1, + anon_sym_DASH_GT, + [37086] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1555), 1, + anon_sym_GT, + [37093] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1557), 1, + sym_identifier, + [37100] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1559), 1, + sym_identifier, + [37107] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1561), 1, + anon_sym_GT, + [37114] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1563), 1, + sym_identifier, + [37121] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1565), 1, + anon_sym_LBRACE, + [37128] = 2, + ACTIONS(355), 1, + sym__comment, + ACTIONS(1567), 1, + sym_command_text, + [37135] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1569), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -34494,28 +34766,28 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(78)] = 10008, [SMALL_STATE(79)] = 10064, [SMALL_STATE(80)] = 10120, - [SMALL_STATE(81)] = 10176, - [SMALL_STATE(82)] = 10248, - [SMALL_STATE(83)] = 10304, - [SMALL_STATE(84)] = 10360, - [SMALL_STATE(85)] = 10416, - [SMALL_STATE(86)] = 10472, - [SMALL_STATE(87)] = 10528, - [SMALL_STATE(88)] = 10584, - [SMALL_STATE(89)] = 10640, - [SMALL_STATE(90)] = 10696, + [SMALL_STATE(81)] = 10192, + [SMALL_STATE(82)] = 10264, + [SMALL_STATE(83)] = 10320, + [SMALL_STATE(84)] = 10376, + [SMALL_STATE(85)] = 10432, + [SMALL_STATE(86)] = 10488, + [SMALL_STATE(87)] = 10544, + [SMALL_STATE(88)] = 10600, + [SMALL_STATE(89)] = 10656, + [SMALL_STATE(90)] = 10712, [SMALL_STATE(91)] = 10768, [SMALL_STATE(92)] = 10823, [SMALL_STATE(93)] = 10878, - [SMALL_STATE(94)] = 10935, - [SMALL_STATE(95)] = 10990, + [SMALL_STATE(94)] = 10933, + [SMALL_STATE(95)] = 10988, [SMALL_STATE(96)] = 11045, [SMALL_STATE(97)] = 11102, [SMALL_STATE(98)] = 11166, [SMALL_STATE(99)] = 11220, [SMALL_STATE(100)] = 11274, [SMALL_STATE(101)] = 11328, - [SMALL_STATE(102)] = 11392, + [SMALL_STATE(102)] = 11382, [SMALL_STATE(103)] = 11446, [SMALL_STATE(104)] = 11503, [SMALL_STATE(105)] = 11560, @@ -34523,1487 +34795,1507 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(107)] = 11674, [SMALL_STATE(108)] = 11731, [SMALL_STATE(109)] = 11788, - [SMALL_STATE(110)] = 11840, - [SMALL_STATE(111)] = 11892, + [SMALL_STATE(110)] = 11846, + [SMALL_STATE(111)] = 11898, [SMALL_STATE(112)] = 11950, [SMALL_STATE(113)] = 12004, - [SMALL_STATE(114)] = 12069, - [SMALL_STATE(115)] = 12120, - [SMALL_STATE(116)] = 12173, - [SMALL_STATE(117)] = 12224, - [SMALL_STATE(118)] = 12279, - [SMALL_STATE(119)] = 12330, - [SMALL_STATE(120)] = 12385, - [SMALL_STATE(121)] = 12450, - [SMALL_STATE(122)] = 12503, - [SMALL_STATE(123)] = 12558, + [SMALL_STATE(114)] = 12059, + [SMALL_STATE(115)] = 12114, + [SMALL_STATE(116)] = 12179, + [SMALL_STATE(117)] = 12230, + [SMALL_STATE(118)] = 12283, + [SMALL_STATE(119)] = 12336, + [SMALL_STATE(120)] = 12391, + [SMALL_STATE(121)] = 12442, + [SMALL_STATE(122)] = 12497, + [SMALL_STATE(123)] = 12548, [SMALL_STATE(124)] = 12613, [SMALL_STATE(125)] = 12668, - [SMALL_STATE(126)] = 12720, - [SMALL_STATE(127)] = 12774, - [SMALL_STATE(128)] = 12824, - [SMALL_STATE(129)] = 12876, - [SMALL_STATE(130)] = 12926, - [SMALL_STATE(131)] = 12978, - [SMALL_STATE(132)] = 13028, - [SMALL_STATE(133)] = 13078, - [SMALL_STATE(134)] = 13128, - [SMALL_STATE(135)] = 13182, - [SMALL_STATE(136)] = 13232, - [SMALL_STATE(137)] = 13284, - [SMALL_STATE(138)] = 13334, - [SMALL_STATE(139)] = 13386, - [SMALL_STATE(140)] = 13436, - [SMALL_STATE(141)] = 13485, - [SMALL_STATE(142)] = 13531, - [SMALL_STATE(143)] = 13577, - [SMALL_STATE(144)] = 13623, - [SMALL_STATE(145)] = 13669, - [SMALL_STATE(146)] = 13715, - [SMALL_STATE(147)] = 13761, - [SMALL_STATE(148)] = 13807, - [SMALL_STATE(149)] = 13853, - [SMALL_STATE(150)] = 13899, - [SMALL_STATE(151)] = 13945, - [SMALL_STATE(152)] = 13991, - [SMALL_STATE(153)] = 14037, - [SMALL_STATE(154)] = 14083, - [SMALL_STATE(155)] = 14129, - [SMALL_STATE(156)] = 14175, - [SMALL_STATE(157)] = 14221, - [SMALL_STATE(158)] = 14267, - [SMALL_STATE(159)] = 14329, - [SMALL_STATE(160)] = 14375, - [SMALL_STATE(161)] = 14421, - [SMALL_STATE(162)] = 14469, - [SMALL_STATE(163)] = 14550, - [SMALL_STATE(164)] = 14631, - [SMALL_STATE(165)] = 14712, - [SMALL_STATE(166)] = 14793, - [SMALL_STATE(167)] = 14874, - [SMALL_STATE(168)] = 14955, - [SMALL_STATE(169)] = 15036, - [SMALL_STATE(170)] = 15117, - [SMALL_STATE(171)] = 15198, - [SMALL_STATE(172)] = 15279, - [SMALL_STATE(173)] = 15360, - [SMALL_STATE(174)] = 15441, - [SMALL_STATE(175)] = 15522, - [SMALL_STATE(176)] = 15603, - [SMALL_STATE(177)] = 15684, - [SMALL_STATE(178)] = 15765, - [SMALL_STATE(179)] = 15846, - [SMALL_STATE(180)] = 15927, - [SMALL_STATE(181)] = 16008, - [SMALL_STATE(182)] = 16089, - [SMALL_STATE(183)] = 16170, - [SMALL_STATE(184)] = 16251, - [SMALL_STATE(185)] = 16332, - [SMALL_STATE(186)] = 16413, - [SMALL_STATE(187)] = 16494, - [SMALL_STATE(188)] = 16575, - [SMALL_STATE(189)] = 16656, - [SMALL_STATE(190)] = 16737, - [SMALL_STATE(191)] = 16818, - [SMALL_STATE(192)] = 16899, - [SMALL_STATE(193)] = 16980, - [SMALL_STATE(194)] = 17061, - [SMALL_STATE(195)] = 17142, - [SMALL_STATE(196)] = 17196, - [SMALL_STATE(197)] = 17246, - [SMALL_STATE(198)] = 17293, - [SMALL_STATE(199)] = 17368, - [SMALL_STATE(200)] = 17411, - [SMALL_STATE(201)] = 17486, - [SMALL_STATE(202)] = 17561, - [SMALL_STATE(203)] = 17636, - [SMALL_STATE(204)] = 17711, - [SMALL_STATE(205)] = 17786, - [SMALL_STATE(206)] = 17861, - [SMALL_STATE(207)] = 17936, - [SMALL_STATE(208)] = 18011, - [SMALL_STATE(209)] = 18054, - [SMALL_STATE(210)] = 18129, - [SMALL_STATE(211)] = 18176, - [SMALL_STATE(212)] = 18251, - [SMALL_STATE(213)] = 18326, - [SMALL_STATE(214)] = 18401, - [SMALL_STATE(215)] = 18476, - [SMALL_STATE(216)] = 18551, - [SMALL_STATE(217)] = 18626, - [SMALL_STATE(218)] = 18701, - [SMALL_STATE(219)] = 18776, - [SMALL_STATE(220)] = 18851, - [SMALL_STATE(221)] = 18926, - [SMALL_STATE(222)] = 19001, - [SMALL_STATE(223)] = 19076, - [SMALL_STATE(224)] = 19151, - [SMALL_STATE(225)] = 19226, - [SMALL_STATE(226)] = 19301, - [SMALL_STATE(227)] = 19376, - [SMALL_STATE(228)] = 19423, - [SMALL_STATE(229)] = 19498, - [SMALL_STATE(230)] = 19573, - [SMALL_STATE(231)] = 19618, - [SMALL_STATE(232)] = 19663, - [SMALL_STATE(233)] = 19738, - [SMALL_STATE(234)] = 19813, - [SMALL_STATE(235)] = 19888, - [SMALL_STATE(236)] = 19963, - [SMALL_STATE(237)] = 20010, - [SMALL_STATE(238)] = 20085, - [SMALL_STATE(239)] = 20160, - [SMALL_STATE(240)] = 20235, - [SMALL_STATE(241)] = 20280, - [SMALL_STATE(242)] = 20355, - [SMALL_STATE(243)] = 20397, - [SMALL_STATE(244)] = 20439, - [SMALL_STATE(245)] = 20481, - [SMALL_STATE(246)] = 20527, - [SMALL_STATE(247)] = 20573, - [SMALL_STATE(248)] = 20619, - [SMALL_STATE(249)] = 20663, - [SMALL_STATE(250)] = 20705, - [SMALL_STATE(251)] = 20747, - [SMALL_STATE(252)] = 20789, - [SMALL_STATE(253)] = 20835, - [SMALL_STATE(254)] = 20877, - [SMALL_STATE(255)] = 20921, - [SMALL_STATE(256)] = 20967, - [SMALL_STATE(257)] = 21013, - [SMALL_STATE(258)] = 21055, - [SMALL_STATE(259)] = 21099, - [SMALL_STATE(260)] = 21140, + [SMALL_STATE(126)] = 12723, + [SMALL_STATE(127)] = 12773, + [SMALL_STATE(128)] = 12825, + [SMALL_STATE(129)] = 12877, + [SMALL_STATE(130)] = 12927, + [SMALL_STATE(131)] = 12979, + [SMALL_STATE(132)] = 13033, + [SMALL_STATE(133)] = 13083, + [SMALL_STATE(134)] = 13133, + [SMALL_STATE(135)] = 13183, + [SMALL_STATE(136)] = 13235, + [SMALL_STATE(137)] = 13285, + [SMALL_STATE(138)] = 13335, + [SMALL_STATE(139)] = 13385, + [SMALL_STATE(140)] = 13439, + [SMALL_STATE(141)] = 13489, + [SMALL_STATE(142)] = 13538, + [SMALL_STATE(143)] = 13584, + [SMALL_STATE(144)] = 13630, + [SMALL_STATE(145)] = 13676, + [SMALL_STATE(146)] = 13722, + [SMALL_STATE(147)] = 13768, + [SMALL_STATE(148)] = 13814, + [SMALL_STATE(149)] = 13860, + [SMALL_STATE(150)] = 13906, + [SMALL_STATE(151)] = 13954, + [SMALL_STATE(152)] = 14000, + [SMALL_STATE(153)] = 14046, + [SMALL_STATE(154)] = 14092, + [SMALL_STATE(155)] = 14154, + [SMALL_STATE(156)] = 14200, + [SMALL_STATE(157)] = 14246, + [SMALL_STATE(158)] = 14292, + [SMALL_STATE(159)] = 14338, + [SMALL_STATE(160)] = 14384, + [SMALL_STATE(161)] = 14430, + [SMALL_STATE(162)] = 14476, + [SMALL_STATE(163)] = 14522, + [SMALL_STATE(164)] = 14603, + [SMALL_STATE(165)] = 14684, + [SMALL_STATE(166)] = 14765, + [SMALL_STATE(167)] = 14846, + [SMALL_STATE(168)] = 14927, + [SMALL_STATE(169)] = 15008, + [SMALL_STATE(170)] = 15089, + [SMALL_STATE(171)] = 15170, + [SMALL_STATE(172)] = 15251, + [SMALL_STATE(173)] = 15332, + [SMALL_STATE(174)] = 15413, + [SMALL_STATE(175)] = 15494, + [SMALL_STATE(176)] = 15575, + [SMALL_STATE(177)] = 15656, + [SMALL_STATE(178)] = 15737, + [SMALL_STATE(179)] = 15818, + [SMALL_STATE(180)] = 15899, + [SMALL_STATE(181)] = 15980, + [SMALL_STATE(182)] = 16061, + [SMALL_STATE(183)] = 16142, + [SMALL_STATE(184)] = 16223, + [SMALL_STATE(185)] = 16304, + [SMALL_STATE(186)] = 16385, + [SMALL_STATE(187)] = 16466, + [SMALL_STATE(188)] = 16547, + [SMALL_STATE(189)] = 16628, + [SMALL_STATE(190)] = 16709, + [SMALL_STATE(191)] = 16790, + [SMALL_STATE(192)] = 16871, + [SMALL_STATE(193)] = 16952, + [SMALL_STATE(194)] = 17033, + [SMALL_STATE(195)] = 17114, + [SMALL_STATE(196)] = 17195, + [SMALL_STATE(197)] = 17249, + [SMALL_STATE(198)] = 17299, + [SMALL_STATE(199)] = 17346, + [SMALL_STATE(200)] = 17421, + [SMALL_STATE(201)] = 17496, + [SMALL_STATE(202)] = 17571, + [SMALL_STATE(203)] = 17646, + [SMALL_STATE(204)] = 17721, + [SMALL_STATE(205)] = 17796, + [SMALL_STATE(206)] = 17871, + [SMALL_STATE(207)] = 17946, + [SMALL_STATE(208)] = 18021, + [SMALL_STATE(209)] = 18096, + [SMALL_STATE(210)] = 18171, + [SMALL_STATE(211)] = 18218, + [SMALL_STATE(212)] = 18293, + [SMALL_STATE(213)] = 18368, + [SMALL_STATE(214)] = 18443, + [SMALL_STATE(215)] = 18518, + [SMALL_STATE(216)] = 18563, + [SMALL_STATE(217)] = 18638, + [SMALL_STATE(218)] = 18713, + [SMALL_STATE(219)] = 18788, + [SMALL_STATE(220)] = 18863, + [SMALL_STATE(221)] = 18938, + [SMALL_STATE(222)] = 18985, + [SMALL_STATE(223)] = 19060, + [SMALL_STATE(224)] = 19135, + [SMALL_STATE(225)] = 19178, + [SMALL_STATE(226)] = 19253, + [SMALL_STATE(227)] = 19328, + [SMALL_STATE(228)] = 19403, + [SMALL_STATE(229)] = 19478, + [SMALL_STATE(230)] = 19525, + [SMALL_STATE(231)] = 19568, + [SMALL_STATE(232)] = 19643, + [SMALL_STATE(233)] = 19718, + [SMALL_STATE(234)] = 19793, + [SMALL_STATE(235)] = 19868, + [SMALL_STATE(236)] = 19943, + [SMALL_STATE(237)] = 20018, + [SMALL_STATE(238)] = 20065, + [SMALL_STATE(239)] = 20140, + [SMALL_STATE(240)] = 20185, + [SMALL_STATE(241)] = 20260, + [SMALL_STATE(242)] = 20335, + [SMALL_STATE(243)] = 20380, + [SMALL_STATE(244)] = 20455, + [SMALL_STATE(245)] = 20499, + [SMALL_STATE(246)] = 20545, + [SMALL_STATE(247)] = 20587, + [SMALL_STATE(248)] = 20633, + [SMALL_STATE(249)] = 20679, + [SMALL_STATE(250)] = 20721, + [SMALL_STATE(251)] = 20763, + [SMALL_STATE(252)] = 20805, + [SMALL_STATE(253)] = 20851, + [SMALL_STATE(254)] = 20893, + [SMALL_STATE(255)] = 20935, + [SMALL_STATE(256)] = 20981, + [SMALL_STATE(257)] = 21023, + [SMALL_STATE(258)] = 21067, + [SMALL_STATE(259)] = 21109, + [SMALL_STATE(260)] = 21151, [SMALL_STATE(261)] = 21197, - [SMALL_STATE(262)] = 21254, - [SMALL_STATE(263)] = 21299, - [SMALL_STATE(264)] = 21344, - [SMALL_STATE(265)] = 21393, - [SMALL_STATE(266)] = 21442, - [SMALL_STATE(267)] = 21487, - [SMALL_STATE(268)] = 21532, - [SMALL_STATE(269)] = 21577, - [SMALL_STATE(270)] = 21632, - [SMALL_STATE(271)] = 21677, - [SMALL_STATE(272)] = 21718, - [SMALL_STATE(273)] = 21758, - [SMALL_STATE(274)] = 21802, - [SMALL_STATE(275)] = 21842, - [SMALL_STATE(276)] = 21884, - [SMALL_STATE(277)] = 21924, - [SMALL_STATE(278)] = 21968, - [SMALL_STATE(279)] = 22011, - [SMALL_STATE(280)] = 22082, - [SMALL_STATE(281)] = 22125, - [SMALL_STATE(282)] = 22168, - [SMALL_STATE(283)] = 22211, - [SMALL_STATE(284)] = 22282, - [SMALL_STATE(285)] = 22353, - [SMALL_STATE(286)] = 22424, - [SMALL_STATE(287)] = 22463, - [SMALL_STATE(288)] = 22502, - [SMALL_STATE(289)] = 22549, - [SMALL_STATE(290)] = 22592, - [SMALL_STATE(291)] = 22635, - [SMALL_STATE(292)] = 22706, - [SMALL_STATE(293)] = 22744, - [SMALL_STATE(294)] = 22782, - [SMALL_STATE(295)] = 22850, - [SMALL_STATE(296)] = 22918, - [SMALL_STATE(297)] = 22986, - [SMALL_STATE(298)] = 23054, - [SMALL_STATE(299)] = 23122, - [SMALL_STATE(300)] = 23160, - [SMALL_STATE(301)] = 23228, - [SMALL_STATE(302)] = 23294, - [SMALL_STATE(303)] = 23332, - [SMALL_STATE(304)] = 23373, - [SMALL_STATE(305)] = 23414, - [SMALL_STATE(306)] = 23455, - [SMALL_STATE(307)] = 23492, - [SMALL_STATE(308)] = 23529, - [SMALL_STATE(309)] = 23566, - [SMALL_STATE(310)] = 23603, - [SMALL_STATE(311)] = 23644, - [SMALL_STATE(312)] = 23706, - [SMALL_STATE(313)] = 23742, - [SMALL_STATE(314)] = 23778, - [SMALL_STATE(315)] = 23816, - [SMALL_STATE(316)] = 23856, - [SMALL_STATE(317)] = 23892, - [SMALL_STATE(318)] = 23930, - [SMALL_STATE(319)] = 23966, - [SMALL_STATE(320)] = 24028, - [SMALL_STATE(321)] = 24064, - [SMALL_STATE(322)] = 24100, - [SMALL_STATE(323)] = 24136, - [SMALL_STATE(324)] = 24172, - [SMALL_STATE(325)] = 24208, - [SMALL_STATE(326)] = 24246, - [SMALL_STATE(327)] = 24282, + [SMALL_STATE(262)] = 21242, + [SMALL_STATE(263)] = 21287, + [SMALL_STATE(264)] = 21332, + [SMALL_STATE(265)] = 21377, + [SMALL_STATE(266)] = 21432, + [SMALL_STATE(267)] = 21477, + [SMALL_STATE(268)] = 21526, + [SMALL_STATE(269)] = 21567, + [SMALL_STATE(270)] = 21624, + [SMALL_STATE(271)] = 21669, + [SMALL_STATE(272)] = 21726, + [SMALL_STATE(273)] = 21767, + [SMALL_STATE(274)] = 21816, + [SMALL_STATE(275)] = 21856, + [SMALL_STATE(276)] = 21900, + [SMALL_STATE(277)] = 21944, + [SMALL_STATE(278)] = 21984, + [SMALL_STATE(279)] = 22024, + [SMALL_STATE(280)] = 22066, + [SMALL_STATE(281)] = 22105, + [SMALL_STATE(282)] = 22176, + [SMALL_STATE(283)] = 22223, + [SMALL_STATE(284)] = 22262, + [SMALL_STATE(285)] = 22333, + [SMALL_STATE(286)] = 22376, + [SMALL_STATE(287)] = 22447, + [SMALL_STATE(288)] = 22490, + [SMALL_STATE(289)] = 22529, + [SMALL_STATE(290)] = 22600, + [SMALL_STATE(291)] = 22643, + [SMALL_STATE(292)] = 22714, + [SMALL_STATE(293)] = 22757, + [SMALL_STATE(294)] = 22800, + [SMALL_STATE(295)] = 22843, + [SMALL_STATE(296)] = 22911, + [SMALL_STATE(297)] = 22979, + [SMALL_STATE(298)] = 23017, + [SMALL_STATE(299)] = 23085, + [SMALL_STATE(300)] = 23153, + [SMALL_STATE(301)] = 23191, + [SMALL_STATE(302)] = 23229, + [SMALL_STATE(303)] = 23267, + [SMALL_STATE(304)] = 23333, + [SMALL_STATE(305)] = 23401, + [SMALL_STATE(306)] = 23469, + [SMALL_STATE(307)] = 23506, + [SMALL_STATE(308)] = 23543, + [SMALL_STATE(309)] = 23580, + [SMALL_STATE(310)] = 23617, + [SMALL_STATE(311)] = 23658, + [SMALL_STATE(312)] = 23699, + [SMALL_STATE(313)] = 23740, + [SMALL_STATE(314)] = 23781, + [SMALL_STATE(315)] = 23818, + [SMALL_STATE(316)] = 23854, + [SMALL_STATE(317)] = 23890, + [SMALL_STATE(318)] = 23928, + [SMALL_STATE(319)] = 23968, + [SMALL_STATE(320)] = 24004, + [SMALL_STATE(321)] = 24040, + [SMALL_STATE(322)] = 24076, + [SMALL_STATE(323)] = 24138, + [SMALL_STATE(324)] = 24176, + [SMALL_STATE(325)] = 24214, + [SMALL_STATE(326)] = 24250, + [SMALL_STATE(327)] = 24286, [SMALL_STATE(328)] = 24322, [SMALL_STATE(329)] = 24358, [SMALL_STATE(330)] = 24394, [SMALL_STATE(331)] = 24430, - [SMALL_STATE(332)] = 24468, - [SMALL_STATE(333)] = 24504, + [SMALL_STATE(332)] = 24466, + [SMALL_STATE(333)] = 24502, [SMALL_STATE(334)] = 24540, [SMALL_STATE(335)] = 24576, - [SMALL_STATE(336)] = 24612, - [SMALL_STATE(337)] = 24648, - [SMALL_STATE(338)] = 24684, - [SMALL_STATE(339)] = 24720, - [SMALL_STATE(340)] = 24782, - [SMALL_STATE(341)] = 24818, - [SMALL_STATE(342)] = 24877, - [SMALL_STATE(343)] = 24936, - [SMALL_STATE(344)] = 24986, - [SMALL_STATE(345)] = 25039, - [SMALL_STATE(346)] = 25088, - [SMALL_STATE(347)] = 25141, - [SMALL_STATE(348)] = 25174, - [SMALL_STATE(349)] = 25227, - [SMALL_STATE(350)] = 25280, - [SMALL_STATE(351)] = 25333, - [SMALL_STATE(352)] = 25386, - [SMALL_STATE(353)] = 25420, - [SMALL_STATE(354)] = 25462, - [SMALL_STATE(355)] = 25493, - [SMALL_STATE(356)] = 25524, - [SMALL_STATE(357)] = 25555, - [SMALL_STATE(358)] = 25586, - [SMALL_STATE(359)] = 25617, - [SMALL_STATE(360)] = 25652, - [SMALL_STATE(361)] = 25683, - [SMALL_STATE(362)] = 25716, - [SMALL_STATE(363)] = 25751, - [SMALL_STATE(364)] = 25782, - [SMALL_STATE(365)] = 25821, - [SMALL_STATE(366)] = 25852, - [SMALL_STATE(367)] = 25883, - [SMALL_STATE(368)] = 25918, - [SMALL_STATE(369)] = 25949, - [SMALL_STATE(370)] = 25980, - [SMALL_STATE(371)] = 26011, - [SMALL_STATE(372)] = 26042, - [SMALL_STATE(373)] = 26073, - [SMALL_STATE(374)] = 26104, - [SMALL_STATE(375)] = 26135, - [SMALL_STATE(376)] = 26166, - [SMALL_STATE(377)] = 26197, - [SMALL_STATE(378)] = 26238, - [SMALL_STATE(379)] = 26269, - [SMALL_STATE(380)] = 26308, - [SMALL_STATE(381)] = 26342, - [SMALL_STATE(382)] = 26376, - [SMALL_STATE(383)] = 26410, - [SMALL_STATE(384)] = 26444, - [SMALL_STATE(385)] = 26478, - [SMALL_STATE(386)] = 26512, - [SMALL_STATE(387)] = 26546, - [SMALL_STATE(388)] = 26581, - [SMALL_STATE(389)] = 26610, - [SMALL_STATE(390)] = 26647, - [SMALL_STATE(391)] = 26679, - [SMALL_STATE(392)] = 26707, - [SMALL_STATE(393)] = 26739, - [SMALL_STATE(394)] = 26771, - [SMALL_STATE(395)] = 26799, - [SMALL_STATE(396)] = 26829, - [SMALL_STATE(397)] = 26857, - [SMALL_STATE(398)] = 26889, - [SMALL_STATE(399)] = 26917, - [SMALL_STATE(400)] = 26945, - [SMALL_STATE(401)] = 26985, - [SMALL_STATE(402)] = 27017, - [SMALL_STATE(403)] = 27045, - [SMALL_STATE(404)] = 27073, - [SMALL_STATE(405)] = 27101, - [SMALL_STATE(406)] = 27129, - [SMALL_STATE(407)] = 27161, - [SMALL_STATE(408)] = 27189, - [SMALL_STATE(409)] = 27221, - [SMALL_STATE(410)] = 27254, - [SMALL_STATE(411)] = 27295, - [SMALL_STATE(412)] = 27336, - [SMALL_STATE(413)] = 27365, - [SMALL_STATE(414)] = 27394, - [SMALL_STATE(415)] = 27435, - [SMALL_STATE(416)] = 27466, - [SMALL_STATE(417)] = 27497, - [SMALL_STATE(418)] = 27526, - [SMALL_STATE(419)] = 27565, - [SMALL_STATE(420)] = 27596, - [SMALL_STATE(421)] = 27627, - [SMALL_STATE(422)] = 27658, - [SMALL_STATE(423)] = 27689, - [SMALL_STATE(424)] = 27716, - [SMALL_STATE(425)] = 27743, - [SMALL_STATE(426)] = 27776, - [SMALL_STATE(427)] = 27807, - [SMALL_STATE(428)] = 27836, - [SMALL_STATE(429)] = 27865, - [SMALL_STATE(430)] = 27896, - [SMALL_STATE(431)] = 27923, - [SMALL_STATE(432)] = 27954, - [SMALL_STATE(433)] = 27995, - [SMALL_STATE(434)] = 28032, - [SMALL_STATE(435)] = 28063, - [SMALL_STATE(436)] = 28094, - [SMALL_STATE(437)] = 28123, - [SMALL_STATE(438)] = 28154, - [SMALL_STATE(439)] = 28183, - [SMALL_STATE(440)] = 28224, - [SMALL_STATE(441)] = 28253, - [SMALL_STATE(442)] = 28282, - [SMALL_STATE(443)] = 28323, - [SMALL_STATE(444)] = 28364, - [SMALL_STATE(445)] = 28395, - [SMALL_STATE(446)] = 28436, - [SMALL_STATE(447)] = 28465, - [SMALL_STATE(448)] = 28496, - [SMALL_STATE(449)] = 28525, - [SMALL_STATE(450)] = 28566, - [SMALL_STATE(451)] = 28592, - [SMALL_STATE(452)] = 28618, - [SMALL_STATE(453)] = 28644, - [SMALL_STATE(454)] = 28670, - [SMALL_STATE(455)] = 28696, - [SMALL_STATE(456)] = 28722, - [SMALL_STATE(457)] = 28750, - [SMALL_STATE(458)] = 28776, - [SMALL_STATE(459)] = 28804, - [SMALL_STATE(460)] = 28830, - [SMALL_STATE(461)] = 28856, - [SMALL_STATE(462)] = 28882, - [SMALL_STATE(463)] = 28908, - [SMALL_STATE(464)] = 28934, - [SMALL_STATE(465)] = 28960, - [SMALL_STATE(466)] = 28986, - [SMALL_STATE(467)] = 29012, - [SMALL_STATE(468)] = 29046, - [SMALL_STATE(469)] = 29072, - [SMALL_STATE(470)] = 29098, - [SMALL_STATE(471)] = 29126, - [SMALL_STATE(472)] = 29152, - [SMALL_STATE(473)] = 29178, - [SMALL_STATE(474)] = 29204, - [SMALL_STATE(475)] = 29230, - [SMALL_STATE(476)] = 29258, - [SMALL_STATE(477)] = 29284, - [SMALL_STATE(478)] = 29310, - [SMALL_STATE(479)] = 29338, - [SMALL_STATE(480)] = 29368, - [SMALL_STATE(481)] = 29394, - [SMALL_STATE(482)] = 29420, - [SMALL_STATE(483)] = 29448, - [SMALL_STATE(484)] = 29474, - [SMALL_STATE(485)] = 29502, - [SMALL_STATE(486)] = 29528, - [SMALL_STATE(487)] = 29554, - [SMALL_STATE(488)] = 29584, - [SMALL_STATE(489)] = 29610, - [SMALL_STATE(490)] = 29636, - [SMALL_STATE(491)] = 29662, - [SMALL_STATE(492)] = 29690, - [SMALL_STATE(493)] = 29716, - [SMALL_STATE(494)] = 29742, - [SMALL_STATE(495)] = 29768, - [SMALL_STATE(496)] = 29794, - [SMALL_STATE(497)] = 29820, - [SMALL_STATE(498)] = 29846, - [SMALL_STATE(499)] = 29872, - [SMALL_STATE(500)] = 29898, - [SMALL_STATE(501)] = 29924, - [SMALL_STATE(502)] = 29950, - [SMALL_STATE(503)] = 29976, - [SMALL_STATE(504)] = 30002, - [SMALL_STATE(505)] = 30028, - [SMALL_STATE(506)] = 30054, - [SMALL_STATE(507)] = 30080, - [SMALL_STATE(508)] = 30106, - [SMALL_STATE(509)] = 30132, - [SMALL_STATE(510)] = 30158, - [SMALL_STATE(511)] = 30184, - [SMALL_STATE(512)] = 30210, - [SMALL_STATE(513)] = 30236, - [SMALL_STATE(514)] = 30262, - [SMALL_STATE(515)] = 30288, - [SMALL_STATE(516)] = 30314, - [SMALL_STATE(517)] = 30340, - [SMALL_STATE(518)] = 30366, - [SMALL_STATE(519)] = 30392, - [SMALL_STATE(520)] = 30418, - [SMALL_STATE(521)] = 30444, - [SMALL_STATE(522)] = 30470, - [SMALL_STATE(523)] = 30496, - [SMALL_STATE(524)] = 30526, - [SMALL_STATE(525)] = 30552, - [SMALL_STATE(526)] = 30578, - [SMALL_STATE(527)] = 30604, - [SMALL_STATE(528)] = 30630, - [SMALL_STATE(529)] = 30660, - [SMALL_STATE(530)] = 30688, - [SMALL_STATE(531)] = 30714, - [SMALL_STATE(532)] = 30740, - [SMALL_STATE(533)] = 30766, - [SMALL_STATE(534)] = 30792, - [SMALL_STATE(535)] = 30820, - [SMALL_STATE(536)] = 30846, - [SMALL_STATE(537)] = 30872, - [SMALL_STATE(538)] = 30898, - [SMALL_STATE(539)] = 30924, - [SMALL_STATE(540)] = 30949, - [SMALL_STATE(541)] = 30988, - [SMALL_STATE(542)] = 31027, - [SMALL_STATE(543)] = 31066, - [SMALL_STATE(544)] = 31101, - [SMALL_STATE(545)] = 31140, - [SMALL_STATE(546)] = 31179, - [SMALL_STATE(547)] = 31204, - [SMALL_STATE(548)] = 31231, - [SMALL_STATE(549)] = 31270, - [SMALL_STATE(550)] = 31309, - [SMALL_STATE(551)] = 31348, - [SMALL_STATE(552)] = 31387, - [SMALL_STATE(553)] = 31426, - [SMALL_STATE(554)] = 31461, - [SMALL_STATE(555)] = 31500, - [SMALL_STATE(556)] = 31535, - [SMALL_STATE(557)] = 31574, - [SMALL_STATE(558)] = 31601, - [SMALL_STATE(559)] = 31626, - [SMALL_STATE(560)] = 31665, - [SMALL_STATE(561)] = 31704, - [SMALL_STATE(562)] = 31743, - [SMALL_STATE(563)] = 31782, - [SMALL_STATE(564)] = 31821, - [SMALL_STATE(565)] = 31860, - [SMALL_STATE(566)] = 31887, - [SMALL_STATE(567)] = 31922, - [SMALL_STATE(568)] = 31961, - [SMALL_STATE(569)] = 32000, - [SMALL_STATE(570)] = 32035, - [SMALL_STATE(571)] = 32074, - [SMALL_STATE(572)] = 32099, - [SMALL_STATE(573)] = 32138, - [SMALL_STATE(574)] = 32177, - [SMALL_STATE(575)] = 32206, - [SMALL_STATE(576)] = 32235, - [SMALL_STATE(577)] = 32264, - [SMALL_STATE(578)] = 32303, - [SMALL_STATE(579)] = 32328, - [SMALL_STATE(580)] = 32367, - [SMALL_STATE(581)] = 32392, - [SMALL_STATE(582)] = 32417, - [SMALL_STATE(583)] = 32456, - [SMALL_STATE(584)] = 32485, - [SMALL_STATE(585)] = 32514, - [SMALL_STATE(586)] = 32549, - [SMALL_STATE(587)] = 32588, - [SMALL_STATE(588)] = 32627, - [SMALL_STATE(589)] = 32654, - [SMALL_STATE(590)] = 32681, - [SMALL_STATE(591)] = 32720, - [SMALL_STATE(592)] = 32759, - [SMALL_STATE(593)] = 32798, - [SMALL_STATE(594)] = 32825, - [SMALL_STATE(595)] = 32864, - [SMALL_STATE(596)] = 32899, - [SMALL_STATE(597)] = 32926, - [SMALL_STATE(598)] = 32950, - [SMALL_STATE(599)] = 32974, - [SMALL_STATE(600)] = 32998, - [SMALL_STATE(601)] = 33024, - [SMALL_STATE(602)] = 33048, - [SMALL_STATE(603)] = 33072, - [SMALL_STATE(604)] = 33096, - [SMALL_STATE(605)] = 33120, - [SMALL_STATE(606)] = 33156, - [SMALL_STATE(607)] = 33182, - [SMALL_STATE(608)] = 33206, - [SMALL_STATE(609)] = 33230, - [SMALL_STATE(610)] = 33254, - [SMALL_STATE(611)] = 33278, - [SMALL_STATE(612)] = 33302, - [SMALL_STATE(613)] = 33338, - [SMALL_STATE(614)] = 33364, - [SMALL_STATE(615)] = 33388, - [SMALL_STATE(616)] = 33420, - [SMALL_STATE(617)] = 33444, - [SMALL_STATE(618)] = 33470, - [SMALL_STATE(619)] = 33506, - [SMALL_STATE(620)] = 33530, - [SMALL_STATE(621)] = 33554, - [SMALL_STATE(622)] = 33590, - [SMALL_STATE(623)] = 33626, - [SMALL_STATE(624)] = 33650, - [SMALL_STATE(625)] = 33674, - [SMALL_STATE(626)] = 33698, - [SMALL_STATE(627)] = 33734, - [SMALL_STATE(628)] = 33760, - [SMALL_STATE(629)] = 33796, - [SMALL_STATE(630)] = 33832, - [SMALL_STATE(631)] = 33865, - [SMALL_STATE(632)] = 33898, - [SMALL_STATE(633)] = 33931, - [SMALL_STATE(634)] = 33964, - [SMALL_STATE(635)] = 33997, - [SMALL_STATE(636)] = 34030, - [SMALL_STATE(637)] = 34055, - [SMALL_STATE(638)] = 34088, - [SMALL_STATE(639)] = 34121, - [SMALL_STATE(640)] = 34146, - [SMALL_STATE(641)] = 34179, - [SMALL_STATE(642)] = 34204, - [SMALL_STATE(643)] = 34229, - [SMALL_STATE(644)] = 34262, - [SMALL_STATE(645)] = 34295, - [SMALL_STATE(646)] = 34328, - [SMALL_STATE(647)] = 34361, - [SMALL_STATE(648)] = 34394, - [SMALL_STATE(649)] = 34427, - [SMALL_STATE(650)] = 34460, - [SMALL_STATE(651)] = 34493, - [SMALL_STATE(652)] = 34526, - [SMALL_STATE(653)] = 34559, - [SMALL_STATE(654)] = 34584, - [SMALL_STATE(655)] = 34617, - [SMALL_STATE(656)] = 34640, - [SMALL_STATE(657)] = 34663, - [SMALL_STATE(658)] = 34696, - [SMALL_STATE(659)] = 34729, - [SMALL_STATE(660)] = 34762, - [SMALL_STATE(661)] = 34795, - [SMALL_STATE(662)] = 34828, - [SMALL_STATE(663)] = 34849, - [SMALL_STATE(664)] = 34870, - [SMALL_STATE(665)] = 34891, - [SMALL_STATE(666)] = 34911, - [SMALL_STATE(667)] = 34931, - [SMALL_STATE(668)] = 34951, - [SMALL_STATE(669)] = 34966, - [SMALL_STATE(670)] = 34986, - [SMALL_STATE(671)] = 34998, - [SMALL_STATE(672)] = 35010, - [SMALL_STATE(673)] = 35024, - [SMALL_STATE(674)] = 35040, - [SMALL_STATE(675)] = 35055, - [SMALL_STATE(676)] = 35068, - [SMALL_STATE(677)] = 35079, - [SMALL_STATE(678)] = 35096, - [SMALL_STATE(679)] = 35107, - [SMALL_STATE(680)] = 35121, - [SMALL_STATE(681)] = 35133, - [SMALL_STATE(682)] = 35145, - [SMALL_STATE(683)] = 35157, - [SMALL_STATE(684)] = 35169, - [SMALL_STATE(685)] = 35183, - [SMALL_STATE(686)] = 35195, - [SMALL_STATE(687)] = 35207, - [SMALL_STATE(688)] = 35220, - [SMALL_STATE(689)] = 35233, - [SMALL_STATE(690)] = 35246, - [SMALL_STATE(691)] = 35259, - [SMALL_STATE(692)] = 35272, - [SMALL_STATE(693)] = 35285, - [SMALL_STATE(694)] = 35298, - [SMALL_STATE(695)] = 35311, - [SMALL_STATE(696)] = 35324, - [SMALL_STATE(697)] = 35337, - [SMALL_STATE(698)] = 35350, - [SMALL_STATE(699)] = 35363, - [SMALL_STATE(700)] = 35376, - [SMALL_STATE(701)] = 35389, - [SMALL_STATE(702)] = 35402, - [SMALL_STATE(703)] = 35415, - [SMALL_STATE(704)] = 35428, - [SMALL_STATE(705)] = 35441, - [SMALL_STATE(706)] = 35454, - [SMALL_STATE(707)] = 35467, - [SMALL_STATE(708)] = 35480, - [SMALL_STATE(709)] = 35493, - [SMALL_STATE(710)] = 35506, - [SMALL_STATE(711)] = 35519, - [SMALL_STATE(712)] = 35530, - [SMALL_STATE(713)] = 35541, - [SMALL_STATE(714)] = 35554, - [SMALL_STATE(715)] = 35567, - [SMALL_STATE(716)] = 35580, - [SMALL_STATE(717)] = 35593, - [SMALL_STATE(718)] = 35606, - [SMALL_STATE(719)] = 35619, - [SMALL_STATE(720)] = 35630, - [SMALL_STATE(721)] = 35643, - [SMALL_STATE(722)] = 35656, - [SMALL_STATE(723)] = 35669, - [SMALL_STATE(724)] = 35682, - [SMALL_STATE(725)] = 35695, - [SMALL_STATE(726)] = 35708, - [SMALL_STATE(727)] = 35721, - [SMALL_STATE(728)] = 35734, - [SMALL_STATE(729)] = 35747, - [SMALL_STATE(730)] = 35760, - [SMALL_STATE(731)] = 35773, - [SMALL_STATE(732)] = 35786, - [SMALL_STATE(733)] = 35799, - [SMALL_STATE(734)] = 35812, - [SMALL_STATE(735)] = 35825, - [SMALL_STATE(736)] = 35836, - [SMALL_STATE(737)] = 35849, - [SMALL_STATE(738)] = 35860, - [SMALL_STATE(739)] = 35873, - [SMALL_STATE(740)] = 35886, - [SMALL_STATE(741)] = 35899, - [SMALL_STATE(742)] = 35912, - [SMALL_STATE(743)] = 35925, - [SMALL_STATE(744)] = 35938, - [SMALL_STATE(745)] = 35951, - [SMALL_STATE(746)] = 35964, - [SMALL_STATE(747)] = 35977, - [SMALL_STATE(748)] = 35990, - [SMALL_STATE(749)] = 36001, - [SMALL_STATE(750)] = 36014, - [SMALL_STATE(751)] = 36027, - [SMALL_STATE(752)] = 36040, - [SMALL_STATE(753)] = 36050, - [SMALL_STATE(754)] = 36060, - [SMALL_STATE(755)] = 36070, - [SMALL_STATE(756)] = 36078, - [SMALL_STATE(757)] = 36088, - [SMALL_STATE(758)] = 36098, - [SMALL_STATE(759)] = 36108, - [SMALL_STATE(760)] = 36118, - [SMALL_STATE(761)] = 36128, - [SMALL_STATE(762)] = 36138, - [SMALL_STATE(763)] = 36146, - [SMALL_STATE(764)] = 36154, - [SMALL_STATE(765)] = 36164, - [SMALL_STATE(766)] = 36174, - [SMALL_STATE(767)] = 36184, - [SMALL_STATE(768)] = 36194, - [SMALL_STATE(769)] = 36204, - [SMALL_STATE(770)] = 36214, - [SMALL_STATE(771)] = 36222, - [SMALL_STATE(772)] = 36232, - [SMALL_STATE(773)] = 36242, - [SMALL_STATE(774)] = 36252, - [SMALL_STATE(775)] = 36260, - [SMALL_STATE(776)] = 36270, - [SMALL_STATE(777)] = 36280, - [SMALL_STATE(778)] = 36290, - [SMALL_STATE(779)] = 36298, - [SMALL_STATE(780)] = 36308, - [SMALL_STATE(781)] = 36318, - [SMALL_STATE(782)] = 36328, - [SMALL_STATE(783)] = 36338, - [SMALL_STATE(784)] = 36348, - [SMALL_STATE(785)] = 36356, - [SMALL_STATE(786)] = 36364, - [SMALL_STATE(787)] = 36374, - [SMALL_STATE(788)] = 36384, - [SMALL_STATE(789)] = 36394, - [SMALL_STATE(790)] = 36401, - [SMALL_STATE(791)] = 36408, - [SMALL_STATE(792)] = 36415, - [SMALL_STATE(793)] = 36422, - [SMALL_STATE(794)] = 36429, - [SMALL_STATE(795)] = 36436, - [SMALL_STATE(796)] = 36443, - [SMALL_STATE(797)] = 36450, - [SMALL_STATE(798)] = 36457, - [SMALL_STATE(799)] = 36464, - [SMALL_STATE(800)] = 36471, - [SMALL_STATE(801)] = 36478, - [SMALL_STATE(802)] = 36485, - [SMALL_STATE(803)] = 36492, - [SMALL_STATE(804)] = 36499, - [SMALL_STATE(805)] = 36506, - [SMALL_STATE(806)] = 36513, - [SMALL_STATE(807)] = 36520, - [SMALL_STATE(808)] = 36527, - [SMALL_STATE(809)] = 36534, - [SMALL_STATE(810)] = 36541, - [SMALL_STATE(811)] = 36548, - [SMALL_STATE(812)] = 36555, - [SMALL_STATE(813)] = 36562, - [SMALL_STATE(814)] = 36569, - [SMALL_STATE(815)] = 36576, - [SMALL_STATE(816)] = 36583, - [SMALL_STATE(817)] = 36590, - [SMALL_STATE(818)] = 36597, - [SMALL_STATE(819)] = 36604, - [SMALL_STATE(820)] = 36611, - [SMALL_STATE(821)] = 36618, - [SMALL_STATE(822)] = 36625, - [SMALL_STATE(823)] = 36632, - [SMALL_STATE(824)] = 36639, - [SMALL_STATE(825)] = 36646, - [SMALL_STATE(826)] = 36653, - [SMALL_STATE(827)] = 36660, - [SMALL_STATE(828)] = 36667, - [SMALL_STATE(829)] = 36674, - [SMALL_STATE(830)] = 36681, - [SMALL_STATE(831)] = 36688, - [SMALL_STATE(832)] = 36695, - [SMALL_STATE(833)] = 36702, - [SMALL_STATE(834)] = 36709, - [SMALL_STATE(835)] = 36716, - [SMALL_STATE(836)] = 36723, - [SMALL_STATE(837)] = 36730, - [SMALL_STATE(838)] = 36737, - [SMALL_STATE(839)] = 36744, - [SMALL_STATE(840)] = 36751, - [SMALL_STATE(841)] = 36758, - [SMALL_STATE(842)] = 36765, - [SMALL_STATE(843)] = 36772, - [SMALL_STATE(844)] = 36779, - [SMALL_STATE(845)] = 36786, - [SMALL_STATE(846)] = 36793, - [SMALL_STATE(847)] = 36800, - [SMALL_STATE(848)] = 36807, - [SMALL_STATE(849)] = 36814, - [SMALL_STATE(850)] = 36821, - [SMALL_STATE(851)] = 36828, - [SMALL_STATE(852)] = 36835, + [SMALL_STATE(336)] = 24638, + [SMALL_STATE(337)] = 24674, + [SMALL_STATE(338)] = 24710, + [SMALL_STATE(339)] = 24746, + [SMALL_STATE(340)] = 24786, + [SMALL_STATE(341)] = 24822, + [SMALL_STATE(342)] = 24858, + [SMALL_STATE(343)] = 24894, + [SMALL_STATE(344)] = 24956, + [SMALL_STATE(345)] = 25015, + [SMALL_STATE(346)] = 25074, + [SMALL_STATE(347)] = 25124, + [SMALL_STATE(348)] = 25177, + [SMALL_STATE(349)] = 25230, + [SMALL_STATE(350)] = 25283, + [SMALL_STATE(351)] = 25316, + [SMALL_STATE(352)] = 25365, + [SMALL_STATE(353)] = 25418, + [SMALL_STATE(354)] = 25471, + [SMALL_STATE(355)] = 25524, + [SMALL_STATE(356)] = 25558, + [SMALL_STATE(357)] = 25600, + [SMALL_STATE(358)] = 25641, + [SMALL_STATE(359)] = 25674, + [SMALL_STATE(360)] = 25709, + [SMALL_STATE(361)] = 25740, + [SMALL_STATE(362)] = 25771, + [SMALL_STATE(363)] = 25802, + [SMALL_STATE(364)] = 25833, + [SMALL_STATE(365)] = 25864, + [SMALL_STATE(366)] = 25903, + [SMALL_STATE(367)] = 25934, + [SMALL_STATE(368)] = 25969, + [SMALL_STATE(369)] = 26000, + [SMALL_STATE(370)] = 26031, + [SMALL_STATE(371)] = 26062, + [SMALL_STATE(372)] = 26097, + [SMALL_STATE(373)] = 26136, + [SMALL_STATE(374)] = 26167, + [SMALL_STATE(375)] = 26198, + [SMALL_STATE(376)] = 26229, + [SMALL_STATE(377)] = 26260, + [SMALL_STATE(378)] = 26291, + [SMALL_STATE(379)] = 26322, + [SMALL_STATE(380)] = 26353, + [SMALL_STATE(381)] = 26384, + [SMALL_STATE(382)] = 26415, + [SMALL_STATE(383)] = 26446, + [SMALL_STATE(384)] = 26480, + [SMALL_STATE(385)] = 26514, + [SMALL_STATE(386)] = 26548, + [SMALL_STATE(387)] = 26582, + [SMALL_STATE(388)] = 26616, + [SMALL_STATE(389)] = 26650, + [SMALL_STATE(390)] = 26684, + [SMALL_STATE(391)] = 26721, + [SMALL_STATE(392)] = 26750, + [SMALL_STATE(393)] = 26785, + [SMALL_STATE(394)] = 26813, + [SMALL_STATE(395)] = 26841, + [SMALL_STATE(396)] = 26869, + [SMALL_STATE(397)] = 26901, + [SMALL_STATE(398)] = 26933, + [SMALL_STATE(399)] = 26973, + [SMALL_STATE(400)] = 27005, + [SMALL_STATE(401)] = 27033, + [SMALL_STATE(402)] = 27063, + [SMALL_STATE(403)] = 27095, + [SMALL_STATE(404)] = 27123, + [SMALL_STATE(405)] = 27151, + [SMALL_STATE(406)] = 27179, + [SMALL_STATE(407)] = 27211, + [SMALL_STATE(408)] = 27239, + [SMALL_STATE(409)] = 27271, + [SMALL_STATE(410)] = 27299, + [SMALL_STATE(411)] = 27331, + [SMALL_STATE(412)] = 27359, + [SMALL_STATE(413)] = 27391, + [SMALL_STATE(414)] = 27430, + [SMALL_STATE(415)] = 27459, + [SMALL_STATE(416)] = 27492, + [SMALL_STATE(417)] = 27533, + [SMALL_STATE(418)] = 27564, + [SMALL_STATE(419)] = 27591, + [SMALL_STATE(420)] = 27624, + [SMALL_STATE(421)] = 27665, + [SMALL_STATE(422)] = 27706, + [SMALL_STATE(423)] = 27737, + [SMALL_STATE(424)] = 27764, + [SMALL_STATE(425)] = 27791, + [SMALL_STATE(426)] = 27820, + [SMALL_STATE(427)] = 27851, + [SMALL_STATE(428)] = 27882, + [SMALL_STATE(429)] = 27913, + [SMALL_STATE(430)] = 27944, + [SMALL_STATE(431)] = 27975, + [SMALL_STATE(432)] = 28012, + [SMALL_STATE(433)] = 28041, + [SMALL_STATE(434)] = 28072, + [SMALL_STATE(435)] = 28103, + [SMALL_STATE(436)] = 28134, + [SMALL_STATE(437)] = 28175, + [SMALL_STATE(438)] = 28204, + [SMALL_STATE(439)] = 28233, + [SMALL_STATE(440)] = 28274, + [SMALL_STATE(441)] = 28303, + [SMALL_STATE(442)] = 28344, + [SMALL_STATE(443)] = 28385, + [SMALL_STATE(444)] = 28414, + [SMALL_STATE(445)] = 28445, + [SMALL_STATE(446)] = 28474, + [SMALL_STATE(447)] = 28515, + [SMALL_STATE(448)] = 28544, + [SMALL_STATE(449)] = 28573, + [SMALL_STATE(450)] = 28604, + [SMALL_STATE(451)] = 28635, + [SMALL_STATE(452)] = 28666, + [SMALL_STATE(453)] = 28697, + [SMALL_STATE(454)] = 28738, + [SMALL_STATE(455)] = 28764, + [SMALL_STATE(456)] = 28790, + [SMALL_STATE(457)] = 28816, + [SMALL_STATE(458)] = 28842, + [SMALL_STATE(459)] = 28868, + [SMALL_STATE(460)] = 28898, + [SMALL_STATE(461)] = 28924, + [SMALL_STATE(462)] = 28950, + [SMALL_STATE(463)] = 28976, + [SMALL_STATE(464)] = 29002, + [SMALL_STATE(465)] = 29028, + [SMALL_STATE(466)] = 29054, + [SMALL_STATE(467)] = 29080, + [SMALL_STATE(468)] = 29106, + [SMALL_STATE(469)] = 29132, + [SMALL_STATE(470)] = 29162, + [SMALL_STATE(471)] = 29188, + [SMALL_STATE(472)] = 29214, + [SMALL_STATE(473)] = 29240, + [SMALL_STATE(474)] = 29268, + [SMALL_STATE(475)] = 29294, + [SMALL_STATE(476)] = 29320, + [SMALL_STATE(477)] = 29346, + [SMALL_STATE(478)] = 29372, + [SMALL_STATE(479)] = 29398, + [SMALL_STATE(480)] = 29428, + [SMALL_STATE(481)] = 29454, + [SMALL_STATE(482)] = 29480, + [SMALL_STATE(483)] = 29506, + [SMALL_STATE(484)] = 29532, + [SMALL_STATE(485)] = 29558, + [SMALL_STATE(486)] = 29586, + [SMALL_STATE(487)] = 29612, + [SMALL_STATE(488)] = 29638, + [SMALL_STATE(489)] = 29666, + [SMALL_STATE(490)] = 29692, + [SMALL_STATE(491)] = 29720, + [SMALL_STATE(492)] = 29748, + [SMALL_STATE(493)] = 29774, + [SMALL_STATE(494)] = 29800, + [SMALL_STATE(495)] = 29826, + [SMALL_STATE(496)] = 29852, + [SMALL_STATE(497)] = 29878, + [SMALL_STATE(498)] = 29904, + [SMALL_STATE(499)] = 29930, + [SMALL_STATE(500)] = 29956, + [SMALL_STATE(501)] = 29982, + [SMALL_STATE(502)] = 30008, + [SMALL_STATE(503)] = 30034, + [SMALL_STATE(504)] = 30060, + [SMALL_STATE(505)] = 30086, + [SMALL_STATE(506)] = 30112, + [SMALL_STATE(507)] = 30138, + [SMALL_STATE(508)] = 30164, + [SMALL_STATE(509)] = 30190, + [SMALL_STATE(510)] = 30216, + [SMALL_STATE(511)] = 30242, + [SMALL_STATE(512)] = 30268, + [SMALL_STATE(513)] = 30294, + [SMALL_STATE(514)] = 30320, + [SMALL_STATE(515)] = 30348, + [SMALL_STATE(516)] = 30374, + [SMALL_STATE(517)] = 30400, + [SMALL_STATE(518)] = 30426, + [SMALL_STATE(519)] = 30452, + [SMALL_STATE(520)] = 30478, + [SMALL_STATE(521)] = 30506, + [SMALL_STATE(522)] = 30532, + [SMALL_STATE(523)] = 30558, + [SMALL_STATE(524)] = 30584, + [SMALL_STATE(525)] = 30610, + [SMALL_STATE(526)] = 30636, + [SMALL_STATE(527)] = 30662, + [SMALL_STATE(528)] = 30688, + [SMALL_STATE(529)] = 30718, + [SMALL_STATE(530)] = 30744, + [SMALL_STATE(531)] = 30770, + [SMALL_STATE(532)] = 30796, + [SMALL_STATE(533)] = 30822, + [SMALL_STATE(534)] = 30850, + [SMALL_STATE(535)] = 30876, + [SMALL_STATE(536)] = 30910, + [SMALL_STATE(537)] = 30936, + [SMALL_STATE(538)] = 30962, + [SMALL_STATE(539)] = 30988, + [SMALL_STATE(540)] = 31014, + [SMALL_STATE(541)] = 31042, + [SMALL_STATE(542)] = 31068, + [SMALL_STATE(543)] = 31107, + [SMALL_STATE(544)] = 31136, + [SMALL_STATE(545)] = 31161, + [SMALL_STATE(546)] = 31186, + [SMALL_STATE(547)] = 31221, + [SMALL_STATE(548)] = 31260, + [SMALL_STATE(549)] = 31299, + [SMALL_STATE(550)] = 31338, + [SMALL_STATE(551)] = 31373, + [SMALL_STATE(552)] = 31412, + [SMALL_STATE(553)] = 31451, + [SMALL_STATE(554)] = 31478, + [SMALL_STATE(555)] = 31517, + [SMALL_STATE(556)] = 31556, + [SMALL_STATE(557)] = 31595, + [SMALL_STATE(558)] = 31634, + [SMALL_STATE(559)] = 31673, + [SMALL_STATE(560)] = 31712, + [SMALL_STATE(561)] = 31747, + [SMALL_STATE(562)] = 31786, + [SMALL_STATE(563)] = 31825, + [SMALL_STATE(564)] = 31864, + [SMALL_STATE(565)] = 31903, + [SMALL_STATE(566)] = 31942, + [SMALL_STATE(567)] = 31969, + [SMALL_STATE(568)] = 32008, + [SMALL_STATE(569)] = 32035, + [SMALL_STATE(570)] = 32074, + [SMALL_STATE(571)] = 32113, + [SMALL_STATE(572)] = 32152, + [SMALL_STATE(573)] = 32191, + [SMALL_STATE(574)] = 32218, + [SMALL_STATE(575)] = 32257, + [SMALL_STATE(576)] = 32292, + [SMALL_STATE(577)] = 32317, + [SMALL_STATE(578)] = 32346, + [SMALL_STATE(579)] = 32381, + [SMALL_STATE(580)] = 32410, + [SMALL_STATE(581)] = 32449, + [SMALL_STATE(582)] = 32488, + [SMALL_STATE(583)] = 32527, + [SMALL_STATE(584)] = 32552, + [SMALL_STATE(585)] = 32581, + [SMALL_STATE(586)] = 32606, + [SMALL_STATE(587)] = 32635, + [SMALL_STATE(588)] = 32674, + [SMALL_STATE(589)] = 32713, + [SMALL_STATE(590)] = 32740, + [SMALL_STATE(591)] = 32765, + [SMALL_STATE(592)] = 32790, + [SMALL_STATE(593)] = 32825, + [SMALL_STATE(594)] = 32864, + [SMALL_STATE(595)] = 32903, + [SMALL_STATE(596)] = 32930, + [SMALL_STATE(597)] = 32959, + [SMALL_STATE(598)] = 32988, + [SMALL_STATE(599)] = 33023, + [SMALL_STATE(600)] = 33062, + [SMALL_STATE(601)] = 33089, + [SMALL_STATE(602)] = 33128, + [SMALL_STATE(603)] = 33167, + [SMALL_STATE(604)] = 33203, + [SMALL_STATE(605)] = 33227, + [SMALL_STATE(606)] = 33251, + [SMALL_STATE(607)] = 33275, + [SMALL_STATE(608)] = 33299, + [SMALL_STATE(609)] = 33323, + [SMALL_STATE(610)] = 33359, + [SMALL_STATE(611)] = 33383, + [SMALL_STATE(612)] = 33409, + [SMALL_STATE(613)] = 33433, + [SMALL_STATE(614)] = 33457, + [SMALL_STATE(615)] = 33483, + [SMALL_STATE(616)] = 33519, + [SMALL_STATE(617)] = 33543, + [SMALL_STATE(618)] = 33567, + [SMALL_STATE(619)] = 33591, + [SMALL_STATE(620)] = 33615, + [SMALL_STATE(621)] = 33639, + [SMALL_STATE(622)] = 33675, + [SMALL_STATE(623)] = 33699, + [SMALL_STATE(624)] = 33723, + [SMALL_STATE(625)] = 33749, + [SMALL_STATE(626)] = 33785, + [SMALL_STATE(627)] = 33809, + [SMALL_STATE(628)] = 33833, + [SMALL_STATE(629)] = 33869, + [SMALL_STATE(630)] = 33901, + [SMALL_STATE(631)] = 33925, + [SMALL_STATE(632)] = 33949, + [SMALL_STATE(633)] = 33973, + [SMALL_STATE(634)] = 34009, + [SMALL_STATE(635)] = 34033, + [SMALL_STATE(636)] = 34066, + [SMALL_STATE(637)] = 34099, + [SMALL_STATE(638)] = 34132, + [SMALL_STATE(639)] = 34155, + [SMALL_STATE(640)] = 34188, + [SMALL_STATE(641)] = 34221, + [SMALL_STATE(642)] = 34254, + [SMALL_STATE(643)] = 34287, + [SMALL_STATE(644)] = 34320, + [SMALL_STATE(645)] = 34353, + [SMALL_STATE(646)] = 34386, + [SMALL_STATE(647)] = 34411, + [SMALL_STATE(648)] = 34444, + [SMALL_STATE(649)] = 34477, + [SMALL_STATE(650)] = 34510, + [SMALL_STATE(651)] = 34535, + [SMALL_STATE(652)] = 34568, + [SMALL_STATE(653)] = 34601, + [SMALL_STATE(654)] = 34634, + [SMALL_STATE(655)] = 34667, + [SMALL_STATE(656)] = 34692, + [SMALL_STATE(657)] = 34725, + [SMALL_STATE(658)] = 34758, + [SMALL_STATE(659)] = 34791, + [SMALL_STATE(660)] = 34816, + [SMALL_STATE(661)] = 34841, + [SMALL_STATE(662)] = 34874, + [SMALL_STATE(663)] = 34907, + [SMALL_STATE(664)] = 34940, + [SMALL_STATE(665)] = 34973, + [SMALL_STATE(666)] = 34996, + [SMALL_STATE(667)] = 35029, + [SMALL_STATE(668)] = 35062, + [SMALL_STATE(669)] = 35095, + [SMALL_STATE(670)] = 35116, + [SMALL_STATE(671)] = 35137, + [SMALL_STATE(672)] = 35158, + [SMALL_STATE(673)] = 35178, + [SMALL_STATE(674)] = 35198, + [SMALL_STATE(675)] = 35218, + [SMALL_STATE(676)] = 35233, + [SMALL_STATE(677)] = 35249, + [SMALL_STATE(678)] = 35269, + [SMALL_STATE(679)] = 35283, + [SMALL_STATE(680)] = 35295, + [SMALL_STATE(681)] = 35307, + [SMALL_STATE(682)] = 35318, + [SMALL_STATE(683)] = 35331, + [SMALL_STATE(684)] = 35346, + [SMALL_STATE(685)] = 35363, + [SMALL_STATE(686)] = 35374, + [SMALL_STATE(687)] = 35386, + [SMALL_STATE(688)] = 35400, + [SMALL_STATE(689)] = 35412, + [SMALL_STATE(690)] = 35424, + [SMALL_STATE(691)] = 35438, + [SMALL_STATE(692)] = 35450, + [SMALL_STATE(693)] = 35462, + [SMALL_STATE(694)] = 35474, + [SMALL_STATE(695)] = 35487, + [SMALL_STATE(696)] = 35500, + [SMALL_STATE(697)] = 35513, + [SMALL_STATE(698)] = 35526, + [SMALL_STATE(699)] = 35537, + [SMALL_STATE(700)] = 35550, + [SMALL_STATE(701)] = 35561, + [SMALL_STATE(702)] = 35574, + [SMALL_STATE(703)] = 35587, + [SMALL_STATE(704)] = 35600, + [SMALL_STATE(705)] = 35613, + [SMALL_STATE(706)] = 35626, + [SMALL_STATE(707)] = 35639, + [SMALL_STATE(708)] = 35652, + [SMALL_STATE(709)] = 35665, + [SMALL_STATE(710)] = 35678, + [SMALL_STATE(711)] = 35691, + [SMALL_STATE(712)] = 35704, + [SMALL_STATE(713)] = 35717, + [SMALL_STATE(714)] = 35728, + [SMALL_STATE(715)] = 35741, + [SMALL_STATE(716)] = 35754, + [SMALL_STATE(717)] = 35767, + [SMALL_STATE(718)] = 35780, + [SMALL_STATE(719)] = 35793, + [SMALL_STATE(720)] = 35806, + [SMALL_STATE(721)] = 35819, + [SMALL_STATE(722)] = 35832, + [SMALL_STATE(723)] = 35845, + [SMALL_STATE(724)] = 35858, + [SMALL_STATE(725)] = 35871, + [SMALL_STATE(726)] = 35884, + [SMALL_STATE(727)] = 35897, + [SMALL_STATE(728)] = 35910, + [SMALL_STATE(729)] = 35923, + [SMALL_STATE(730)] = 35936, + [SMALL_STATE(731)] = 35949, + [SMALL_STATE(732)] = 35962, + [SMALL_STATE(733)] = 35975, + [SMALL_STATE(734)] = 35988, + [SMALL_STATE(735)] = 36001, + [SMALL_STATE(736)] = 36014, + [SMALL_STATE(737)] = 36027, + [SMALL_STATE(738)] = 36040, + [SMALL_STATE(739)] = 36053, + [SMALL_STATE(740)] = 36066, + [SMALL_STATE(741)] = 36079, + [SMALL_STATE(742)] = 36092, + [SMALL_STATE(743)] = 36105, + [SMALL_STATE(744)] = 36116, + [SMALL_STATE(745)] = 36129, + [SMALL_STATE(746)] = 36142, + [SMALL_STATE(747)] = 36155, + [SMALL_STATE(748)] = 36168, + [SMALL_STATE(749)] = 36179, + [SMALL_STATE(750)] = 36192, + [SMALL_STATE(751)] = 36205, + [SMALL_STATE(752)] = 36218, + [SMALL_STATE(753)] = 36231, + [SMALL_STATE(754)] = 36242, + [SMALL_STATE(755)] = 36255, + [SMALL_STATE(756)] = 36268, + [SMALL_STATE(757)] = 36281, + [SMALL_STATE(758)] = 36294, + [SMALL_STATE(759)] = 36307, + [SMALL_STATE(760)] = 36320, + [SMALL_STATE(761)] = 36330, + [SMALL_STATE(762)] = 36340, + [SMALL_STATE(763)] = 36350, + [SMALL_STATE(764)] = 36358, + [SMALL_STATE(765)] = 36368, + [SMALL_STATE(766)] = 36376, + [SMALL_STATE(767)] = 36386, + [SMALL_STATE(768)] = 36396, + [SMALL_STATE(769)] = 36406, + [SMALL_STATE(770)] = 36416, + [SMALL_STATE(771)] = 36426, + [SMALL_STATE(772)] = 36434, + [SMALL_STATE(773)] = 36442, + [SMALL_STATE(774)] = 36452, + [SMALL_STATE(775)] = 36460, + [SMALL_STATE(776)] = 36470, + [SMALL_STATE(777)] = 36480, + [SMALL_STATE(778)] = 36490, + [SMALL_STATE(779)] = 36498, + [SMALL_STATE(780)] = 36508, + [SMALL_STATE(781)] = 36518, + [SMALL_STATE(782)] = 36528, + [SMALL_STATE(783)] = 36538, + [SMALL_STATE(784)] = 36548, + [SMALL_STATE(785)] = 36558, + [SMALL_STATE(786)] = 36568, + [SMALL_STATE(787)] = 36578, + [SMALL_STATE(788)] = 36586, + [SMALL_STATE(789)] = 36596, + [SMALL_STATE(790)] = 36606, + [SMALL_STATE(791)] = 36616, + [SMALL_STATE(792)] = 36626, + [SMALL_STATE(793)] = 36636, + [SMALL_STATE(794)] = 36646, + [SMALL_STATE(795)] = 36656, + [SMALL_STATE(796)] = 36666, + [SMALL_STATE(797)] = 36676, + [SMALL_STATE(798)] = 36686, + [SMALL_STATE(799)] = 36694, + [SMALL_STATE(800)] = 36701, + [SMALL_STATE(801)] = 36708, + [SMALL_STATE(802)] = 36715, + [SMALL_STATE(803)] = 36722, + [SMALL_STATE(804)] = 36729, + [SMALL_STATE(805)] = 36736, + [SMALL_STATE(806)] = 36743, + [SMALL_STATE(807)] = 36750, + [SMALL_STATE(808)] = 36757, + [SMALL_STATE(809)] = 36764, + [SMALL_STATE(810)] = 36771, + [SMALL_STATE(811)] = 36778, + [SMALL_STATE(812)] = 36785, + [SMALL_STATE(813)] = 36792, + [SMALL_STATE(814)] = 36799, + [SMALL_STATE(815)] = 36806, + [SMALL_STATE(816)] = 36813, + [SMALL_STATE(817)] = 36820, + [SMALL_STATE(818)] = 36827, + [SMALL_STATE(819)] = 36834, + [SMALL_STATE(820)] = 36841, + [SMALL_STATE(821)] = 36848, + [SMALL_STATE(822)] = 36855, + [SMALL_STATE(823)] = 36862, + [SMALL_STATE(824)] = 36869, + [SMALL_STATE(825)] = 36876, + [SMALL_STATE(826)] = 36883, + [SMALL_STATE(827)] = 36890, + [SMALL_STATE(828)] = 36897, + [SMALL_STATE(829)] = 36904, + [SMALL_STATE(830)] = 36911, + [SMALL_STATE(831)] = 36918, + [SMALL_STATE(832)] = 36925, + [SMALL_STATE(833)] = 36932, + [SMALL_STATE(834)] = 36939, + [SMALL_STATE(835)] = 36946, + [SMALL_STATE(836)] = 36953, + [SMALL_STATE(837)] = 36960, + [SMALL_STATE(838)] = 36967, + [SMALL_STATE(839)] = 36974, + [SMALL_STATE(840)] = 36981, + [SMALL_STATE(841)] = 36988, + [SMALL_STATE(842)] = 36995, + [SMALL_STATE(843)] = 37002, + [SMALL_STATE(844)] = 37009, + [SMALL_STATE(845)] = 37016, + [SMALL_STATE(846)] = 37023, + [SMALL_STATE(847)] = 37030, + [SMALL_STATE(848)] = 37037, + [SMALL_STATE(849)] = 37044, + [SMALL_STATE(850)] = 37051, + [SMALL_STATE(851)] = 37058, + [SMALL_STATE(852)] = 37065, + [SMALL_STATE(853)] = 37072, + [SMALL_STATE(854)] = 37079, + [SMALL_STATE(855)] = 37086, + [SMALL_STATE(856)] = 37093, + [SMALL_STATE(857)] = 37100, + [SMALL_STATE(858)] = 37107, + [SMALL_STATE(859)] = 37114, + [SMALL_STATE(860)] = 37121, + [SMALL_STATE(861)] = 37128, + [SMALL_STATE(862)] = 37135, }; 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_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(90), - [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(190), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(846), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(850), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(112), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(89), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(87), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(84), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(186), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(213), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(214), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(224), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(843), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(842), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(72), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(816), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(80), + [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(73), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(177), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(844), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(79), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(860), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(112), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(85), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(86), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(88), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(187), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(203), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(204), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(220), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(859), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(859), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(856), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(850), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(77), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(802), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 1), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_instance, 3), [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_instance, 3), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 6), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 6), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 6), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 6), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 1), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 3), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 3), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(114), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(116), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_kind, 1), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_kind, 1), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 3), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 3), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_instance, 3), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_instance, 3), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(116), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(120), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_kind, 1), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_kind, 1), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_argument, 1), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_argument, 1), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 3), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as, 3), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(196), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(162), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(806), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(159), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(706), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(231), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(155), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(151), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(150), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(191), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(196), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(162), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(802), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(159), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(706), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(231), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(155), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(151), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(150), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(191), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(271), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(272), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(276), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(200), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(309), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 2), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 2), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(307), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 4), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 4), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 2), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(758), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 3), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 3), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe, 3), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe, 3), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(803), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(728), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(80), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(746), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(89), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(89), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(87), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(84), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(186), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(820), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 3), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 3), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 3), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as, 3), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(197), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(172), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(837), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(156), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(706), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(215), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(151), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(149), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(148), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(176), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(197), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(172), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(847), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(156), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(706), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(215), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(151), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(149), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(148), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(176), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(268), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(277), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(274), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(205), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 2), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 2), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(309), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(308), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 3), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 3), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 2), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(764), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_definition, 4), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_definition, 4), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 5), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe, 3), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe, 3), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 4), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(803), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(751), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(79), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(759), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(85), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(85), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(86), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(88), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(187), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(805), [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_definition, 4), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(388), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(391), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(225), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(403), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(461), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(571), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(767), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(546), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(412), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(582), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(766), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(579), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(530), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(413), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 3), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_definition_repeat2, 3), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(391), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(225), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(403), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(409), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(466), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(576), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat2, 2), SHIFT_REPEAT(770), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(402), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(565), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(776), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(574), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(541), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(438), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(544), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 1), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 1), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat2, 2), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(668), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(672), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 1), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), SHIFT_REPEAT(723), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), SHIFT_REPEAT(780), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat2, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(776), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(733), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), SHIFT_REPEAT(677), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 3), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 3), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(675), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(678), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specification, 3), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 1), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(788), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 2), SHIFT_REPEAT(724), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(781), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2), SHIFT_REPEAT(684), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(742), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 3), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat1, 4), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1531] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 6), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 3), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 3), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1543] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_pattern, 6), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), }; #ifdef __cplusplus