From 346ff1c0daaeba8ac1099802fe860f86e221e8c4 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 31 Dec 2023 21:46:45 -0500 Subject: [PATCH] Improve index parsing --- src/abstract_tree/function_expression.rs | 7 +- src/abstract_tree/index.rs | 2 +- src/built_in_functions/std.rs | 2 +- src/lib.rs | 1 - tests/interpret.rs | 32 +- tree-sitter-dust/grammar.js | 13 +- tree-sitter-dust/src/grammar.json | 28 +- tree-sitter-dust/src/parser.c | 27636 +++++++++++---------- 8 files changed, 14548 insertions(+), 13173 deletions(-) diff --git a/src/abstract_tree/function_expression.rs b/src/abstract_tree/function_expression.rs index 86d5ae7..094c709 100644 --- a/src/abstract_tree/function_expression.rs +++ b/src/abstract_tree/function_expression.rs @@ -19,7 +19,12 @@ impl AbstractTree for FunctionExpression { fn from_syntax_node(source: &str, node: Node, context: &Map) -> Result { Error::expect_syntax_node(source, "function_expression", node)?; - let child = node.child(0).unwrap(); + let first_child = node.child(0).unwrap(); + let child = if first_child.is_named() { + first_child + } else { + node.child(1).unwrap() + }; let function_expression = match child.kind() { "identifier" => FunctionExpression::Identifier(Identifier::from_syntax_node( diff --git a/src/abstract_tree/index.rs b/src/abstract_tree/index.rs index 55e41cc..142f3e6 100644 --- a/src/abstract_tree/index.rs +++ b/src/abstract_tree/index.rs @@ -94,7 +94,7 @@ impl AbstractTree for Index { Type::List(item_type) => Ok(*item_type.clone()), Type::Map => Ok(Type::Any), Type::None => Ok(Type::None), - _ => todo!(), + r#type => Ok(r#type), } } } diff --git a/src/built_in_functions/std.rs b/src/built_in_functions/std.rs index 8b2666e..56e63d6 100644 --- a/src/built_in_functions/std.rs +++ b/src/built_in_functions/std.rs @@ -15,7 +15,7 @@ impl BuiltInFunction for Std { Error::expect_argument_amount(self, 0, arguments.len())?; let std_context = STD.get_or_init(|| { - let std_source = "say_hi = () { output(hi) }"; + let std_source = "say_hi = () { output('hi') }"; let std_context = Map::new(); interpret_with_context(std_source, std_context.clone()).unwrap(); diff --git a/src/lib.rs b/src/lib.rs index cc260ad..29fb246 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,6 @@ //! //! Using this library is simple and straightforward, see the [inferface] module for instructions on //! interpreting Dust code. Most of the language's features are implemented in the [tools] module. - pub use crate::{ abstract_tree::*, built_in_functions::{BuiltInFunction, BUILT_IN_FUNCTIONS}, diff --git a/tests/interpret.rs b/tests/interpret.rs index 1415f45..3a49ea3 100644 --- a/tests/interpret.rs +++ b/tests/interpret.rs @@ -338,17 +338,29 @@ mod index { } #[test] - fn complex_index() { - let test = interpret( - " - x = [1 2 3] - y = () { 2 } - x:y() - ", - ) - .unwrap(); + fn index_function_calls() { + assert_eq!( + interpret( + " + x = [1 2 3] + y = () { 2 } + x:y() + ", + ), + Ok(Value::Integer(3)) + ); - assert_eq!(Value::Integer(3), test); + assert_eq!( + interpret( + " + x = { + y = () { 2 } + } + (x:y)() + ", + ), + Ok(Value::Integer(2)) + ); } } diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index bec8709..16167f4 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -200,7 +200,7 @@ module.exports = grammar({ index: $ => prec.left( - 2, + 1, seq( $.expression, ':', @@ -377,6 +377,16 @@ module.exports = grammar({ ), function_expression: $ => + choice( + $._function_expression_kind, + seq( + '(', + $._function_expression_kind, + ')', + ), + ), + + _function_expression_kind: $ => prec( 1, choice( @@ -387,7 +397,6 @@ module.exports = grammar({ $.yield, ), ), - function_call: $ => prec.right( seq( diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 81f6dcc..dee93c4 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -599,7 +599,7 @@ }, "index": { "type": "PREC_LEFT", - "value": 2, + "value": 1, "content": { "type": "SEQ", "members": [ @@ -1231,6 +1231,32 @@ ] }, "function_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_function_expression_kind" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_function_expression_kind" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "_function_expression_kind": { "type": "PREC", "value": 1, "content": { diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 7429cf5..88e7bd8 100644 --- a/tree-sitter-dust/src/parser.c +++ b/tree-sitter-dust/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 380 +#define STATE_COUNT 406 #define LARGE_STATE_COUNT 79 -#define SYMBOL_COUNT 118 +#define SYMBOL_COUNT 119 #define ALIAS_COUNT 0 #define TOKEN_COUNT 76 #define EXTERNAL_TOKEN_COUNT 0 @@ -124,16 +124,17 @@ enum { sym_type = 105, sym_function = 106, sym_function_expression = 107, - sym_function_call = 108, - sym_yield = 109, - sym_built_in_function = 110, - aux_sym_root_repeat1 = 111, - aux_sym_list_repeat1 = 112, - aux_sym_map_repeat1 = 113, - aux_sym_if_else_repeat1 = 114, - aux_sym_match_repeat1 = 115, - aux_sym_type_repeat1 = 116, - aux_sym_function_repeat1 = 117, + sym__function_expression_kind = 108, + sym_function_call = 109, + sym_yield = 110, + sym_built_in_function = 111, + aux_sym_root_repeat1 = 112, + aux_sym_list_repeat1 = 113, + aux_sym_map_repeat1 = 114, + aux_sym_if_else_repeat1 = 115, + aux_sym_match_repeat1 = 116, + aux_sym_type_repeat1 = 117, + aux_sym_function_repeat1 = 118, }; static const char * const ts_symbol_names[] = { @@ -245,6 +246,7 @@ static const char * const ts_symbol_names[] = { [sym_type] = "type", [sym_function] = "function", [sym_function_expression] = "function_expression", + [sym__function_expression_kind] = "_function_expression_kind", [sym_function_call] = "function_call", [sym_yield] = "yield", [sym_built_in_function] = "built_in_function", @@ -366,6 +368,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_type] = sym_type, [sym_function] = sym_function, [sym_function_expression] = sym_function_expression, + [sym__function_expression_kind] = sym__function_expression_kind, [sym_function_call] = sym_function_call, [sym_yield] = sym_yield, [sym_built_in_function] = sym_built_in_function, @@ -811,6 +814,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__function_expression_kind] = { + .visible = false, + .named = true, + }, [sym_function_call] = { .visible = true, .named = true, @@ -871,52 +878,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 7, - [10] = 10, + [9] = 6, + [10] = 8, [11] = 11, - [12] = 11, - [13] = 10, - [14] = 7, - [15] = 10, - [16] = 11, + [12] = 7, + [13] = 7, + [14] = 8, + [15] = 11, + [16] = 7, [17] = 8, - [18] = 10, - [19] = 7, - [20] = 8, - [21] = 11, - [22] = 8, + [18] = 8, + [19] = 11, + [20] = 6, + [21] = 6, + [22] = 6, [23] = 11, - [24] = 7, - [25] = 10, - [26] = 8, + [24] = 24, + [25] = 7, + [26] = 11, [27] = 27, [28] = 28, - [29] = 27, + [29] = 29, [30] = 30, [31] = 27, - [32] = 30, + [32] = 32, [33] = 33, [34] = 34, - [35] = 35, - [36] = 34, - [37] = 30, - [38] = 38, - [39] = 39, - [40] = 34, - [41] = 41, - [42] = 38, - [43] = 38, + [35] = 27, + [36] = 36, + [37] = 33, + [38] = 34, + [39] = 36, + [40] = 40, + [41] = 34, + [42] = 33, + [43] = 36, [44] = 44, - [45] = 44, + [45] = 45, [46] = 46, [47] = 47, - [48] = 48, + [48] = 47, [49] = 49, - [50] = 50, - [51] = 48, - [52] = 46, - [53] = 53, - [54] = 47, + [50] = 45, + [51] = 44, + [52] = 52, + [53] = 46, + [54] = 54, [55] = 55, [56] = 56, [57] = 57, @@ -928,7 +935,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [63] = 63, [64] = 64, [65] = 65, - [66] = 62, + [66] = 66, [67] = 67, [68] = 68, [69] = 69, @@ -939,309 +946,335 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [74] = 74, [75] = 75, [76] = 76, - [77] = 72, + [77] = 77, [78] = 78, [79] = 79, [80] = 79, - [81] = 44, - [82] = 44, - [83] = 48, - [84] = 47, - [85] = 46, - [86] = 47, - [87] = 48, - [88] = 46, - [89] = 78, - [90] = 73, - [91] = 72, - [92] = 62, - [93] = 67, - [94] = 59, - [95] = 55, - [96] = 75, - [97] = 69, - [98] = 58, - [99] = 70, - [100] = 65, - [101] = 56, - [102] = 74, - [103] = 49, - [104] = 76, - [105] = 50, - [106] = 68, - [107] = 57, - [108] = 62, - [109] = 60, - [110] = 72, - [111] = 64, - [112] = 63, - [113] = 53, - [114] = 71, - [115] = 79, + [81] = 46, + [82] = 45, + [83] = 47, + [84] = 44, + [85] = 47, + [86] = 45, + [87] = 46, + [88] = 44, + [89] = 63, + [90] = 74, + [91] = 59, + [92] = 64, + [93] = 71, + [94] = 76, + [95] = 65, + [96] = 61, + [97] = 56, + [98] = 72, + [99] = 75, + [100] = 54, + [101] = 67, + [102] = 58, + [103] = 78, + [104] = 60, + [105] = 70, + [106] = 77, + [107] = 73, + [108] = 66, + [109] = 62, + [110] = 52, + [111] = 57, + [112] = 68, + [113] = 49, + [114] = 69, + [115] = 115, [116] = 79, - [117] = 44, + [117] = 79, [118] = 118, - [119] = 46, + [119] = 115, [120] = 120, [121] = 121, - [122] = 47, - [123] = 48, - [124] = 118, - [125] = 44, - [126] = 126, - [127] = 127, - [128] = 127, - [129] = 129, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 124, + [126] = 124, + [127] = 124, + [128] = 128, + [129] = 128, [130] = 130, - [131] = 131, + [131] = 122, [132] = 132, - [133] = 132, - [134] = 134, - [135] = 135, - [136] = 132, - [137] = 134, - [138] = 138, - [139] = 138, - [140] = 132, - [141] = 141, - [142] = 46, - [143] = 48, - [144] = 47, - [145] = 135, - [146] = 134, - [147] = 130, - [148] = 141, - [149] = 132, - [150] = 138, - [151] = 130, - [152] = 141, - [153] = 135, - [154] = 64, - [155] = 70, - [156] = 72, - [157] = 62, - [158] = 75, - [159] = 68, - [160] = 76, - [161] = 58, + [133] = 128, + [134] = 122, + [135] = 121, + [136] = 136, + [137] = 137, + [138] = 136, + [139] = 121, + [140] = 140, + [141] = 123, + [142] = 124, + [143] = 123, + [144] = 136, + [145] = 132, + [146] = 124, + [147] = 46, + [148] = 47, + [149] = 44, + [150] = 47, + [151] = 45, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 154, + [157] = 153, + [158] = 153, + [159] = 159, + [160] = 52, + [161] = 68, [162] = 67, - [163] = 55, - [164] = 74, - [165] = 69, - [166] = 49, - [167] = 57, - [168] = 63, - [169] = 65, - [170] = 50, - [171] = 60, - [172] = 73, - [173] = 78, - [174] = 56, - [175] = 62, - [176] = 72, - [177] = 59, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 179, - [182] = 178, - [183] = 179, + [163] = 60, + [164] = 164, + [165] = 54, + [166] = 153, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 74, + [171] = 78, + [172] = 77, + [173] = 152, + [174] = 57, + [175] = 152, + [176] = 176, + [177] = 153, + [178] = 153, + [179] = 169, + [180] = 168, + [181] = 169, + [182] = 168, + [183] = 176, [184] = 184, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 180, - [189] = 189, - [190] = 178, - [191] = 179, - [192] = 180, - [193] = 179, - [194] = 178, - [195] = 195, - [196] = 196, - [197] = 195, - [198] = 186, - [199] = 199, - [200] = 195, - [201] = 185, - [202] = 184, - [203] = 178, - [204] = 196, - [205] = 189, - [206] = 184, - [207] = 180, - [208] = 178, - [209] = 196, - [210] = 189, - [211] = 180, - [212] = 187, - [213] = 189, - [214] = 185, - [215] = 180, - [216] = 189, - [217] = 199, - [218] = 189, - [219] = 179, - [220] = 220, - [221] = 221, - [222] = 53, - [223] = 223, - [224] = 71, - [225] = 76, - [226] = 226, - [227] = 58, - [228] = 228, - [229] = 68, - [230] = 79, + [185] = 70, + [186] = 72, + [187] = 152, + [188] = 75, + [189] = 73, + [190] = 168, + [191] = 169, + [192] = 152, + [193] = 76, + [194] = 62, + [195] = 153, + [196] = 153, + [197] = 169, + [198] = 168, + [199] = 152, + [200] = 169, + [201] = 168, + [202] = 167, + [203] = 59, + [204] = 65, + [205] = 169, + [206] = 56, + [207] = 63, + [208] = 159, + [209] = 184, + [210] = 71, + [211] = 154, + [212] = 58, + [213] = 66, + [214] = 184, + [215] = 169, + [216] = 168, + [217] = 61, + [218] = 168, + [219] = 44, + [220] = 164, + [221] = 167, + [222] = 46, + [223] = 184, + [224] = 155, + [225] = 64, + [226] = 45, + [227] = 152, + [228] = 152, + [229] = 164, + [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, + [233] = 49, + [234] = 69, [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, + [236] = 71, + [237] = 76, + [238] = 56, [239] = 239, [240] = 240, - [241] = 79, + [241] = 241, [242] = 242, [243] = 243, - [244] = 236, - [245] = 220, - [246] = 221, - [247] = 223, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, [248] = 248, - [249] = 68, - [250] = 228, - [251] = 76, - [252] = 58, - [253] = 226, - [254] = 233, - [255] = 243, - [256] = 236, - [257] = 231, - [258] = 235, - [259] = 237, - [260] = 232, - [261] = 242, - [262] = 240, - [263] = 239, - [264] = 236, - [265] = 234, - [266] = 238, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 220, - [274] = 221, - [275] = 275, - [276] = 276, + [249] = 79, + [250] = 244, + [251] = 251, + [252] = 252, + [253] = 79, + [254] = 254, + [255] = 230, + [256] = 231, + [257] = 232, + [258] = 258, + [259] = 76, + [260] = 235, + [261] = 239, + [262] = 71, + [263] = 56, + [264] = 251, + [265] = 244, + [266] = 240, + [267] = 248, + [268] = 247, + [269] = 254, + [270] = 246, + [271] = 241, + [272] = 242, + [273] = 243, + [274] = 245, + [275] = 252, + [276] = 244, [277] = 277, [278] = 278, [279] = 279, - [280] = 278, - [281] = 277, - [282] = 278, - [283] = 277, - [284] = 284, - [285] = 284, - [286] = 284, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 231, + [284] = 230, + [285] = 285, + [286] = 286, [287] = 287, [288] = 288, - [289] = 287, - [290] = 287, - [291] = 291, - [292] = 292, - [293] = 293, + [289] = 289, + [290] = 289, + [291] = 287, + [292] = 289, + [293] = 287, [294] = 294, - [295] = 295, - [296] = 296, + [295] = 294, + [296] = 294, [297] = 297, - [298] = 296, - [299] = 297, - [300] = 296, + [298] = 298, + [299] = 299, + [300] = 298, [301] = 301, - [302] = 297, + [302] = 298, [303] = 303, - [304] = 301, - [305] = 303, + [304] = 304, + [305] = 305, [306] = 306, - [307] = 307, - [308] = 308, + [307] = 306, + [308] = 47, [309] = 309, - [310] = 307, - [311] = 309, - [312] = 309, - [313] = 313, - [314] = 313, - [315] = 313, - [316] = 313, - [317] = 313, - [318] = 313, - [319] = 319, - [320] = 320, - [321] = 320, - [322] = 322, - [323] = 320, - [324] = 324, + [310] = 46, + [311] = 311, + [312] = 45, + [313] = 311, + [314] = 309, + [315] = 311, + [316] = 316, + [317] = 316, + [318] = 309, + [319] = 44, + [320] = 47, + [321] = 45, + [322] = 46, + [323] = 44, + [324] = 74, [325] = 325, [326] = 326, [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, + [328] = 326, + [329] = 77, + [330] = 326, [331] = 331, - [332] = 332, + [332] = 327, [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 338, - [340] = 338, - [341] = 341, + [334] = 333, + [335] = 333, + [336] = 333, + [337] = 333, + [338] = 333, + [339] = 333, + [340] = 333, + [341] = 333, [342] = 342, - [343] = 342, + [343] = 343, [344] = 344, - [345] = 344, - [346] = 346, - [347] = 342, - [348] = 346, + [345] = 342, + [346] = 342, + [347] = 347, + [348] = 348, [349] = 349, - [350] = 344, - [351] = 346, + [350] = 350, + [351] = 351, [352] = 352, - [353] = 352, + [353] = 353, [354] = 354, - [355] = 354, - [356] = 352, - [357] = 354, + [355] = 355, + [356] = 356, + [357] = 357, [358] = 358, [359] = 359, [360] = 360, [361] = 361, - [362] = 361, - [363] = 360, - [364] = 364, + [362] = 362, + [363] = 361, + [364] = 361, [365] = 365, [366] = 366, [367] = 367, - [368] = 368, - [369] = 360, - [370] = 360, - [371] = 371, - [372] = 360, - [373] = 373, - [374] = 367, - [375] = 367, - [376] = 361, - [377] = 371, + [368] = 365, + [369] = 367, + [370] = 366, + [371] = 367, + [372] = 372, + [373] = 365, + [374] = 366, + [375] = 375, + [376] = 376, + [377] = 376, [378] = 378, - [379] = 371, + [379] = 379, + [380] = 376, + [381] = 379, + [382] = 378, + [383] = 379, + [384] = 378, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 386, + [390] = 387, + [391] = 391, + [392] = 386, + [393] = 393, + [394] = 391, + [395] = 395, + [396] = 396, + [397] = 386, + [398] = 391, + [399] = 399, + [400] = 386, + [401] = 395, + [402] = 402, + [403] = 403, + [404] = 387, + [405] = 395, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2467,15 +2500,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 1}, [115] = {.lex_state = 1}, [116] = {.lex_state = 1}, - [117] = {.lex_state = 2}, + [117] = {.lex_state = 1}, [118] = {.lex_state = 1}, - [119] = {.lex_state = 2}, + [119] = {.lex_state = 1}, [120] = {.lex_state = 1}, [121] = {.lex_state = 1}, - [122] = {.lex_state = 2}, - [123] = {.lex_state = 2}, + [122] = {.lex_state = 1}, + [123] = {.lex_state = 1}, [124] = {.lex_state = 1}, - [125] = {.lex_state = 2}, + [125] = {.lex_state = 1}, [126] = {.lex_state = 1}, [127] = {.lex_state = 1}, [128] = {.lex_state = 1}, @@ -2492,42 +2525,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [139] = {.lex_state = 1}, [140] = {.lex_state = 1}, [141] = {.lex_state = 1}, - [142] = {.lex_state = 2}, - [143] = {.lex_state = 2}, - [144] = {.lex_state = 2}, + [142] = {.lex_state = 1}, + [143] = {.lex_state = 1}, + [144] = {.lex_state = 1}, [145] = {.lex_state = 1}, [146] = {.lex_state = 1}, - [147] = {.lex_state = 1}, - [148] = {.lex_state = 1}, - [149] = {.lex_state = 1}, - [150] = {.lex_state = 1}, - [151] = {.lex_state = 1}, + [147] = {.lex_state = 2}, + [148] = {.lex_state = 2}, + [149] = {.lex_state = 2}, + [150] = {.lex_state = 2}, + [151] = {.lex_state = 2}, [152] = {.lex_state = 1}, [153] = {.lex_state = 1}, - [154] = {.lex_state = 2}, - [155] = {.lex_state = 2}, - [156] = {.lex_state = 2}, - [157] = {.lex_state = 2}, - [158] = {.lex_state = 2}, - [159] = {.lex_state = 2}, + [154] = {.lex_state = 1}, + [155] = {.lex_state = 1}, + [156] = {.lex_state = 1}, + [157] = {.lex_state = 1}, + [158] = {.lex_state = 1}, + [159] = {.lex_state = 1}, [160] = {.lex_state = 2}, [161] = {.lex_state = 2}, [162] = {.lex_state = 2}, [163] = {.lex_state = 2}, - [164] = {.lex_state = 2}, + [164] = {.lex_state = 1}, [165] = {.lex_state = 2}, - [166] = {.lex_state = 2}, - [167] = {.lex_state = 2}, - [168] = {.lex_state = 2}, - [169] = {.lex_state = 2}, + [166] = {.lex_state = 1}, + [167] = {.lex_state = 1}, + [168] = {.lex_state = 1}, + [169] = {.lex_state = 1}, [170] = {.lex_state = 2}, [171] = {.lex_state = 2}, [172] = {.lex_state = 2}, - [173] = {.lex_state = 2}, + [173] = {.lex_state = 1}, [174] = {.lex_state = 2}, - [175] = {.lex_state = 2}, - [176] = {.lex_state = 2}, - [177] = {.lex_state = 2}, + [175] = {.lex_state = 1}, + [176] = {.lex_state = 1}, + [177] = {.lex_state = 1}, [178] = {.lex_state = 1}, [179] = {.lex_state = 1}, [180] = {.lex_state = 1}, @@ -2535,16 +2568,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [182] = {.lex_state = 1}, [183] = {.lex_state = 1}, [184] = {.lex_state = 1}, - [185] = {.lex_state = 1}, - [186] = {.lex_state = 1}, + [185] = {.lex_state = 2}, + [186] = {.lex_state = 2}, [187] = {.lex_state = 1}, - [188] = {.lex_state = 1}, - [189] = {.lex_state = 1}, + [188] = {.lex_state = 2}, + [189] = {.lex_state = 2}, [190] = {.lex_state = 1}, [191] = {.lex_state = 1}, [192] = {.lex_state = 1}, - [193] = {.lex_state = 1}, - [194] = {.lex_state = 1}, + [193] = {.lex_state = 2}, + [194] = {.lex_state = 2}, [195] = {.lex_state = 1}, [196] = {.lex_state = 1}, [197] = {.lex_state = 1}, @@ -2553,67 +2586,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 1}, [201] = {.lex_state = 1}, [202] = {.lex_state = 1}, - [203] = {.lex_state = 1}, - [204] = {.lex_state = 1}, + [203] = {.lex_state = 2}, + [204] = {.lex_state = 2}, [205] = {.lex_state = 1}, - [206] = {.lex_state = 1}, - [207] = {.lex_state = 1}, + [206] = {.lex_state = 2}, + [207] = {.lex_state = 2}, [208] = {.lex_state = 1}, [209] = {.lex_state = 1}, - [210] = {.lex_state = 1}, + [210] = {.lex_state = 2}, [211] = {.lex_state = 1}, - [212] = {.lex_state = 1}, - [213] = {.lex_state = 1}, + [212] = {.lex_state = 2}, + [213] = {.lex_state = 2}, [214] = {.lex_state = 1}, [215] = {.lex_state = 1}, [216] = {.lex_state = 1}, - [217] = {.lex_state = 1}, + [217] = {.lex_state = 2}, [218] = {.lex_state = 1}, - [219] = {.lex_state = 1}, - [220] = {.lex_state = 0}, - [221] = {.lex_state = 0}, - [222] = {.lex_state = 3}, - [223] = {.lex_state = 0}, - [224] = {.lex_state = 3}, - [225] = {.lex_state = 0}, - [226] = {.lex_state = 0}, - [227] = {.lex_state = 0}, - [228] = {.lex_state = 0}, - [229] = {.lex_state = 0}, - [230] = {.lex_state = 2}, - [231] = {.lex_state = 25}, - [232] = {.lex_state = 25}, - [233] = {.lex_state = 25}, - [234] = {.lex_state = 25}, - [235] = {.lex_state = 25}, - [236] = {.lex_state = 25}, - [237] = {.lex_state = 25}, - [238] = {.lex_state = 25}, - [239] = {.lex_state = 25}, + [219] = {.lex_state = 2}, + [220] = {.lex_state = 1}, + [221] = {.lex_state = 1}, + [222] = {.lex_state = 2}, + [223] = {.lex_state = 1}, + [224] = {.lex_state = 1}, + [225] = {.lex_state = 2}, + [226] = {.lex_state = 2}, + [227] = {.lex_state = 1}, + [228] = {.lex_state = 1}, + [229] = {.lex_state = 1}, + [230] = {.lex_state = 0}, + [231] = {.lex_state = 0}, + [232] = {.lex_state = 0}, + [233] = {.lex_state = 3}, + [234] = {.lex_state = 3}, + [235] = {.lex_state = 0}, + [236] = {.lex_state = 0}, + [237] = {.lex_state = 0}, + [238] = {.lex_state = 0}, + [239] = {.lex_state = 0}, [240] = {.lex_state = 25}, - [241] = {.lex_state = 2}, + [241] = {.lex_state = 25}, [242] = {.lex_state = 25}, [243] = {.lex_state = 25}, [244] = {.lex_state = 25}, - [245] = {.lex_state = 5}, - [246] = {.lex_state = 5}, - [247] = {.lex_state = 5}, + [245] = {.lex_state = 25}, + [246] = {.lex_state = 25}, + [247] = {.lex_state = 25}, [248] = {.lex_state = 25}, - [249] = {.lex_state = 5}, - [250] = {.lex_state = 5}, - [251] = {.lex_state = 5}, - [252] = {.lex_state = 5}, - [253] = {.lex_state = 5}, - [254] = {.lex_state = 1}, - [255] = {.lex_state = 1}, - [256] = {.lex_state = 1}, - [257] = {.lex_state = 1}, - [258] = {.lex_state = 1}, - [259] = {.lex_state = 1}, - [260] = {.lex_state = 1}, - [261] = {.lex_state = 1}, - [262] = {.lex_state = 1}, - [263] = {.lex_state = 1}, + [249] = {.lex_state = 2}, + [250] = {.lex_state = 25}, + [251] = {.lex_state = 25}, + [252] = {.lex_state = 25}, + [253] = {.lex_state = 2}, + [254] = {.lex_state = 25}, + [255] = {.lex_state = 5}, + [256] = {.lex_state = 5}, + [257] = {.lex_state = 5}, + [258] = {.lex_state = 25}, + [259] = {.lex_state = 5}, + [260] = {.lex_state = 5}, + [261] = {.lex_state = 5}, + [262] = {.lex_state = 5}, + [263] = {.lex_state = 5}, [264] = {.lex_state = 1}, [265] = {.lex_state = 1}, [266] = {.lex_state = 1}, @@ -2623,8 +2656,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [270] = {.lex_state = 1}, [271] = {.lex_state = 1}, [272] = {.lex_state = 1}, - [273] = {.lex_state = 5}, - [274] = {.lex_state = 5}, + [273] = {.lex_state = 1}, + [274] = {.lex_state = 1}, [275] = {.lex_state = 1}, [276] = {.lex_state = 1}, [277] = {.lex_state = 1}, @@ -2633,8 +2666,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 1}, [281] = {.lex_state = 1}, [282] = {.lex_state = 1}, - [283] = {.lex_state = 1}, - [284] = {.lex_state = 1}, + [283] = {.lex_state = 5}, + [284] = {.lex_state = 5}, [285] = {.lex_state = 1}, [286] = {.lex_state = 1}, [287] = {.lex_state = 1}, @@ -2646,19 +2679,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [293] = {.lex_state = 1}, [294] = {.lex_state = 1}, [295] = {.lex_state = 1}, - [296] = {.lex_state = 2}, - [297] = {.lex_state = 2}, - [298] = {.lex_state = 2}, - [299] = {.lex_state = 2}, - [300] = {.lex_state = 2}, - [301] = {.lex_state = 2}, - [302] = {.lex_state = 2}, - [303] = {.lex_state = 2}, - [304] = {.lex_state = 2}, - [305] = {.lex_state = 2}, + [296] = {.lex_state = 1}, + [297] = {.lex_state = 1}, + [298] = {.lex_state = 1}, + [299] = {.lex_state = 1}, + [300] = {.lex_state = 1}, + [301] = {.lex_state = 1}, + [302] = {.lex_state = 1}, + [303] = {.lex_state = 1}, + [304] = {.lex_state = 1}, + [305] = {.lex_state = 1}, [306] = {.lex_state = 2}, [307] = {.lex_state = 2}, - [308] = {.lex_state = 4}, + [308] = {.lex_state = 2}, [309] = {.lex_state = 2}, [310] = {.lex_state = 2}, [311] = {.lex_state = 2}, @@ -2669,67 +2702,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 2}, [317] = {.lex_state = 2}, [318] = {.lex_state = 2}, - [319] = {.lex_state = 7}, + [319] = {.lex_state = 2}, [320] = {.lex_state = 2}, [321] = {.lex_state = 2}, - [322] = {.lex_state = 7}, + [322] = {.lex_state = 2}, [323] = {.lex_state = 2}, - [324] = {.lex_state = 7}, - [325] = {.lex_state = 7}, - [326] = {.lex_state = 7}, - [327] = {.lex_state = 7}, - [328] = {.lex_state = 1}, - [329] = {.lex_state = 1}, - [330] = {.lex_state = 1}, - [331] = {.lex_state = 1}, - [332] = {.lex_state = 1}, - [333] = {.lex_state = 1}, - [334] = {.lex_state = 1}, - [335] = {.lex_state = 1}, - [336] = {.lex_state = 1}, - [337] = {.lex_state = 1}, - [338] = {.lex_state = 25}, - [339] = {.lex_state = 25}, - [340] = {.lex_state = 25}, - [341] = {.lex_state = 25}, - [342] = {.lex_state = 1}, - [343] = {.lex_state = 1}, - [344] = {.lex_state = 1}, - [345] = {.lex_state = 1}, - [346] = {.lex_state = 1}, - [347] = {.lex_state = 1}, - [348] = {.lex_state = 1}, - [349] = {.lex_state = 25}, - [350] = {.lex_state = 1}, + [324] = {.lex_state = 2}, + [325] = {.lex_state = 2}, + [326] = {.lex_state = 2}, + [327] = {.lex_state = 2}, + [328] = {.lex_state = 2}, + [329] = {.lex_state = 2}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 4}, + [332] = {.lex_state = 2}, + [333] = {.lex_state = 2}, + [334] = {.lex_state = 2}, + [335] = {.lex_state = 2}, + [336] = {.lex_state = 2}, + [337] = {.lex_state = 2}, + [338] = {.lex_state = 2}, + [339] = {.lex_state = 2}, + [340] = {.lex_state = 2}, + [341] = {.lex_state = 2}, + [342] = {.lex_state = 2}, + [343] = {.lex_state = 7}, + [344] = {.lex_state = 7}, + [345] = {.lex_state = 2}, + [346] = {.lex_state = 2}, + [347] = {.lex_state = 7}, + [348] = {.lex_state = 7}, + [349] = {.lex_state = 7}, + [350] = {.lex_state = 7}, [351] = {.lex_state = 1}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 0}, - [356] = {.lex_state = 0}, - [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 5}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 25}, - [366] = {.lex_state = 5}, + [352] = {.lex_state = 1}, + [353] = {.lex_state = 1}, + [354] = {.lex_state = 1}, + [355] = {.lex_state = 1}, + [356] = {.lex_state = 1}, + [357] = {.lex_state = 1}, + [358] = {.lex_state = 1}, + [359] = {.lex_state = 1}, + [360] = {.lex_state = 1}, + [361] = {.lex_state = 25}, + [362] = {.lex_state = 25}, + [363] = {.lex_state = 25}, + [364] = {.lex_state = 25}, + [365] = {.lex_state = 1}, + [366] = {.lex_state = 1}, [367] = {.lex_state = 1}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 0}, + [368] = {.lex_state = 1}, + [369] = {.lex_state = 1}, + [370] = {.lex_state = 1}, + [371] = {.lex_state = 1}, + [372] = {.lex_state = 25}, + [373] = {.lex_state = 1}, [374] = {.lex_state = 1}, - [375] = {.lex_state = 1}, + [375] = {.lex_state = 0}, [376] = {.lex_state = 0}, [377] = {.lex_state = 0}, [378] = {.lex_state = 0}, [379] = {.lex_state = 0}, + [380] = {.lex_state = 0}, + [381] = {.lex_state = 0}, + [382] = {.lex_state = 0}, + [383] = {.lex_state = 0}, + [384] = {.lex_state = 0}, + [385] = {.lex_state = 0}, + [386] = {.lex_state = 0}, + [387] = {.lex_state = 1}, + [388] = {.lex_state = 5}, + [389] = {.lex_state = 0}, + [390] = {.lex_state = 1}, + [391] = {.lex_state = 0}, + [392] = {.lex_state = 0}, + [393] = {.lex_state = 0}, + [394] = {.lex_state = 0}, + [395] = {.lex_state = 0}, + [396] = {.lex_state = 25}, + [397] = {.lex_state = 0}, + [398] = {.lex_state = 0}, + [399] = {.lex_state = 5}, + [400] = {.lex_state = 0}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, + [403] = {.lex_state = 0}, + [404] = {.lex_state = 1}, + [405] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2812,34 +2871,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(378), - [sym_statement] = STATE(6), + [sym_root] = STATE(403), + [sym_statement] = STATE(24), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(6), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(24), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -2883,30 +2943,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(39), [sym__identifier_pattern] = ACTIONS(41), @@ -2951,34 +3012,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(89), }, [3] = { - [sym_statement] = STATE(15), + [sym_statement] = STATE(8), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(61), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(55), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(15), - [aux_sym_map_repeat1] = STATE(277), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(8), + [aux_sym_map_repeat1] = STATE(290), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3021,34 +3083,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [4] = { - [sym_statement] = STATE(18), + [sym_statement] = STATE(10), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(61), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(55), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(18), - [aux_sym_map_repeat1] = STATE(281), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(10), + [aux_sym_map_repeat1] = STATE(289), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3091,34 +3154,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [5] = { - [sym_statement] = STATE(25), + [sym_statement] = STATE(17), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(61), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(55), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(25), - [aux_sym_map_repeat1] = STATE(283), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(17), + [aux_sym_map_repeat1] = STATE(292), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3161,39 +3225,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [6] = { - [sym_statement] = STATE(2), + [sym_statement] = STATE(17), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(98), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(17), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(96), [sym_integer] = ACTIONS(13), [sym_float] = ACTIONS(15), [sym_string] = ACTIONS(15), @@ -3230,33 +3295,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [7] = { - [sym_statement] = STATE(21), + [sym_statement] = STATE(15), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(21), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(15), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(98), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [8] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3298,34 +3434,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [8] = { - [sym_statement] = STATE(18), + [9] = { + [sym_statement] = STATE(10), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(18), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(10), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3367,102 +3504,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [9] = { - [sym_statement] = STATE(16), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(16), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(102), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, [10] = { [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3508,30 +3577,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3575,32 +3645,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [12] = { - [sym_statement] = STATE(2), + [sym_statement] = STATE(26), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(26), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(102), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [13] = { + [sym_statement] = STATE(23), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(23), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(106), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [14] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -3643,178 +3854,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [13] = { - [sym_statement] = STATE(2), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(2), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(108), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, - [14] = { - [sym_statement] = STATE(12), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(12), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(108), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, [15] = { [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(100), + [anon_sym_RBRACE] = ACTIONS(108), [sym_integer] = ACTIONS(13), [sym_float] = ACTIONS(15), [sym_string] = ACTIONS(15), @@ -3851,33 +3925,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [16] = { - [sym_statement] = STATE(2), + [sym_statement] = STATE(19), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(2), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(19), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3920,33 +3995,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [17] = { - [sym_statement] = STATE(10), + [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(10), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(2), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(110), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [18] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(2), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(98), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [19] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -3988,172 +4204,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [18] = { - [sym_statement] = STATE(2), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(2), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(114), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, - [19] = { - [sym_statement] = STATE(11), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(11), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(114), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, [20] = { - [sym_statement] = STATE(13), + [sym_statement] = STATE(14), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(13), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(14), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(114), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [21] = { + [sym_statement] = STATE(18), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(18), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -4195,33 +4344,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [21] = { - [sym_statement] = STATE(2), + [22] = { + [sym_statement] = STATE(8), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(8), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(92), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [23] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -4264,178 +4484,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [22] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(25), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(96), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, - [23] = { + [24] = { [sym_statement] = STATE(2), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(120), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_async] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(120), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, - [24] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(23), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(122), [sym_integer] = ACTIONS(13), [sym_float] = ACTIONS(15), [sym_string] = ACTIONS(15), @@ -4472,32 +4555,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [25] = { - [sym_statement] = STATE(2), + [sym_statement] = STATE(11), [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), + [aux_sym_root_repeat1] = STATE(11), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [anon_sym_RBRACE] = ACTIONS(100), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [26] = { + [sym_statement] = STATE(2), + [sym_expression] = STATE(79), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(250), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(250), + [sym_index_assignment] = STATE(250), + [sym_if_else] = STATE(250), + [sym_if] = STATE(230), + [sym_match] = STATE(250), + [sym_while] = STATE(250), + [sym_for] = STATE(250), + [sym_return] = STATE(250), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), @@ -4540,102 +4694,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, - [26] = { - [sym_statement] = STATE(15), - [sym_expression] = STATE(79), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(236), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(236), - [sym_index_assignment] = STATE(236), - [sym_if_else] = STATE(236), - [sym_if] = STATE(220), - [sym_match] = STATE(236), - [sym_while] = STATE(236), - [sym_for] = STATE(236), - [sym_return] = STATE(236), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [aux_sym_root_repeat1] = STATE(15), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_RBRACE] = ACTIONS(92), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), - }, [27] = { - [sym_statement] = STATE(263), - [sym_expression] = STATE(241), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(256), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(273), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), + [sym_statement] = STATE(264), + [sym_expression] = STATE(117), + [sym__expression_kind] = STATE(92), + [sym_block] = STATE(265), + [sym_identifier] = STATE(113), + [sym_value] = STATE(92), + [sym_boolean] = STATE(112), + [sym_list] = STATE(112), + [sym_map] = STATE(112), + [sym_option] = STATE(112), + [sym_index] = STATE(114), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(255), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(90), + [sym_function_expression] = STATE(391), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(110), [sym__identifier_pattern] = ACTIONS(124), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(126), @@ -4677,166 +4763,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(156), }, [28] = { - [sym_statement] = STATE(292), - [sym_expression] = STATE(230), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(264), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(264), - [sym_index_assignment] = STATE(264), - [sym_if_else] = STATE(264), - [sym_if] = STATE(273), - [sym_match] = STATE(264), - [sym_while] = STATE(264), - [sym_for] = STATE(264), - [sym_return] = STATE(264), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), - [sym__identifier_pattern] = ACTIONS(124), + [sym_statement] = STATE(299), + [sym_expression] = STATE(253), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(276), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(276), + [sym_index_assignment] = STATE(276), + [sym_if_else] = STATE(276), + [sym_if] = STATE(284), + [sym_match] = STATE(276), + [sym_while] = STATE(276), + [sym_for] = STATE(276), + [sym_return] = STATE(276), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_async] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(130), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(134), - [sym_string] = ACTIONS(134), - [anon_sym_true] = ACTIONS(136), - [anon_sym_false] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_none] = ACTIONS(140), - [anon_sym_some] = ACTIONS(142), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_asyncfor] = ACTIONS(152), - [anon_sym_return] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_assert_equal] = ACTIONS(156), - [anon_sym_bash] = ACTIONS(156), - [anon_sym_download] = ACTIONS(156), - [anon_sym_either_or] = ACTIONS(156), - [anon_sym_fish] = ACTIONS(156), - [anon_sym_from_json] = ACTIONS(156), - [anon_sym_is_none] = ACTIONS(156), - [anon_sym_is_some] = ACTIONS(156), - [anon_sym_length] = ACTIONS(156), - [anon_sym_metadata] = ACTIONS(156), - [anon_sym_output] = ACTIONS(156), - [anon_sym_output_error] = ACTIONS(156), - [anon_sym_random] = ACTIONS(156), - [anon_sym_random_boolean] = ACTIONS(156), - [anon_sym_random_float] = ACTIONS(156), - [anon_sym_random_integer] = ACTIONS(156), - [anon_sym_read] = ACTIONS(156), - [anon_sym_to_json] = ACTIONS(156), - [anon_sym_write] = ACTIONS(156), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [29] = { - [sym_statement] = STATE(239), - [sym_expression] = STATE(80), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(244), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(244), - [sym_index_assignment] = STATE(244), - [sym_if_else] = STATE(244), - [sym_if] = STATE(220), - [sym_match] = STATE(244), - [sym_while] = STATE(244), - [sym_for] = STATE(244), - [sym_return] = STATE(244), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [sym__identifier_pattern] = ACTIONS(5), + [sym_statement] = STATE(299), + [sym_expression] = STATE(253), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(276), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(276), + [sym_index_assignment] = STATE(276), + [sym_if_else] = STATE(276), + [sym_if] = STATE(284), + [sym_match] = STATE(276), + [sym_while] = STATE(276), + [sym_for] = STATE(276), + [sym_return] = STATE(276), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), + [anon_sym_if] = ACTIONS(144), + [anon_sym_match] = ACTIONS(146), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [30] = { - [sym_statement] = STATE(259), - [sym_expression] = STATE(241), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(256), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(273), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), + [sym_statement] = STATE(277), + [sym_expression] = STATE(116), + [sym__expression_kind] = STATE(92), + [sym_block] = STATE(276), + [sym_identifier] = STATE(113), + [sym_value] = STATE(92), + [sym_boolean] = STATE(112), + [sym_list] = STATE(112), + [sym_map] = STATE(112), + [sym_option] = STATE(112), + [sym_index] = STATE(114), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(276), + [sym_index_assignment] = STATE(276), + [sym_if_else] = STATE(276), + [sym_if] = STATE(255), + [sym_match] = STATE(276), + [sym_while] = STATE(276), + [sym_for] = STATE(276), + [sym_return] = STATE(276), + [sym_function] = STATE(90), + [sym_function_expression] = STATE(391), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(110), [sym__identifier_pattern] = ACTIONS(124), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(126), @@ -4878,99 +4967,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(156), }, [31] = { - [sym_statement] = STATE(263), - [sym_expression] = STATE(115), - [sym__expression_kind] = STATE(93), - [sym_block] = STATE(256), - [sym_identifier] = STATE(113), - [sym_value] = STATE(93), - [sym_boolean] = STATE(107), - [sym_list] = STATE(107), - [sym_map] = STATE(107), - [sym_option] = STATE(107), - [sym_index] = STATE(114), - [sym_math] = STATE(93), - [sym_logic] = STATE(93), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(245), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(92), - [sym_function_expression] = STATE(362), - [sym_function_call] = STATE(91), - [sym_yield] = STATE(91), - [sym_built_in_function] = STATE(103), - [sym__identifier_pattern] = ACTIONS(158), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_async] = ACTIONS(162), - [anon_sym_LBRACE] = ACTIONS(164), - [sym_integer] = ACTIONS(166), - [sym_float] = ACTIONS(168), - [sym_string] = ACTIONS(168), - [anon_sym_true] = ACTIONS(170), - [anon_sym_false] = ACTIONS(170), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_none] = ACTIONS(174), - [anon_sym_some] = ACTIONS(176), - [anon_sym_if] = ACTIONS(144), - [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(180), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(186), - [anon_sym_assert_equal] = ACTIONS(186), - [anon_sym_bash] = ACTIONS(186), - [anon_sym_download] = ACTIONS(186), - [anon_sym_either_or] = ACTIONS(186), - [anon_sym_fish] = ACTIONS(186), - [anon_sym_from_json] = ACTIONS(186), - [anon_sym_is_none] = ACTIONS(186), - [anon_sym_is_some] = ACTIONS(186), - [anon_sym_length] = ACTIONS(186), - [anon_sym_metadata] = ACTIONS(186), - [anon_sym_output] = ACTIONS(186), - [anon_sym_output_error] = ACTIONS(186), - [anon_sym_random] = ACTIONS(186), - [anon_sym_random_boolean] = ACTIONS(186), - [anon_sym_random_float] = ACTIONS(186), - [anon_sym_random_integer] = ACTIONS(186), - [anon_sym_read] = ACTIONS(186), - [anon_sym_to_json] = ACTIONS(186), - [anon_sym_write] = ACTIONS(186), - }, - [32] = { - [sym_statement] = STATE(237), + [sym_statement] = STATE(251), [sym_expression] = STATE(80), - [sym__expression_kind] = STATE(67), + [sym__expression_kind] = STATE(64), [sym_block] = STATE(244), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), [sym_assignment] = STATE(244), [sym_index_assignment] = STATE(244), [sym_if_else] = STATE(244), - [sym_if] = STATE(220), + [sym_if] = STATE(230), [sym_match] = STATE(244), [sym_while] = STATE(244), [sym_for] = STATE(244), [sym_return] = STATE(244), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), [sym_function_call] = STATE(77), [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), + [sym_built_in_function] = STATE(52), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(7), @@ -5011,368 +5034,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(37), [anon_sym_write] = ACTIONS(37), }, + [32] = { + [sym_statement] = STATE(301), + [sym_expression] = STATE(253), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(276), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(276), + [sym_index_assignment] = STATE(276), + [sym_if_else] = STATE(276), + [sym_if] = STATE(284), + [sym_match] = STATE(276), + [sym_while] = STATE(276), + [sym_for] = STATE(276), + [sym_return] = STATE(276), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), + [anon_sym_if] = ACTIONS(144), + [anon_sym_match] = ACTIONS(146), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), + }, [33] = { [sym_statement] = STATE(267), - [sym_expression] = STATE(116), - [sym__expression_kind] = STATE(93), - [sym_block] = STATE(264), + [sym_expression] = STATE(117), + [sym__expression_kind] = STATE(92), + [sym_block] = STATE(265), [sym_identifier] = STATE(113), - [sym_value] = STATE(93), - [sym_boolean] = STATE(107), - [sym_list] = STATE(107), - [sym_map] = STATE(107), - [sym_option] = STATE(107), + [sym_value] = STATE(92), + [sym_boolean] = STATE(112), + [sym_list] = STATE(112), + [sym_map] = STATE(112), + [sym_option] = STATE(112), [sym_index] = STATE(114), - [sym_math] = STATE(93), - [sym_logic] = STATE(93), - [sym_assignment] = STATE(264), - [sym_index_assignment] = STATE(264), - [sym_if_else] = STATE(264), - [sym_if] = STATE(245), - [sym_match] = STATE(264), - [sym_while] = STATE(264), - [sym_for] = STATE(264), - [sym_return] = STATE(264), - [sym_function] = STATE(92), - [sym_function_expression] = STATE(362), - [sym_function_call] = STATE(91), - [sym_yield] = STATE(91), - [sym_built_in_function] = STATE(103), - [sym__identifier_pattern] = ACTIONS(158), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(255), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(90), + [sym_function_expression] = STATE(391), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(110), + [sym__identifier_pattern] = ACTIONS(124), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_async] = ACTIONS(162), - [anon_sym_LBRACE] = ACTIONS(164), - [sym_integer] = ACTIONS(166), - [sym_float] = ACTIONS(168), - [sym_string] = ACTIONS(168), - [anon_sym_true] = ACTIONS(170), - [anon_sym_false] = ACTIONS(170), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_none] = ACTIONS(174), - [anon_sym_some] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_async] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(130), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(134), + [sym_string] = ACTIONS(134), + [anon_sym_true] = ACTIONS(136), + [anon_sym_false] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(138), + [anon_sym_none] = ACTIONS(140), + [anon_sym_some] = ACTIONS(142), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(180), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(186), - [anon_sym_assert_equal] = ACTIONS(186), - [anon_sym_bash] = ACTIONS(186), - [anon_sym_download] = ACTIONS(186), - [anon_sym_either_or] = ACTIONS(186), - [anon_sym_fish] = ACTIONS(186), - [anon_sym_from_json] = ACTIONS(186), - [anon_sym_is_none] = ACTIONS(186), - [anon_sym_is_some] = ACTIONS(186), - [anon_sym_length] = ACTIONS(186), - [anon_sym_metadata] = ACTIONS(186), - [anon_sym_output] = ACTIONS(186), - [anon_sym_output_error] = ACTIONS(186), - [anon_sym_random] = ACTIONS(186), - [anon_sym_random_boolean] = ACTIONS(186), - [anon_sym_random_float] = ACTIONS(186), - [anon_sym_random_integer] = ACTIONS(186), - [anon_sym_read] = ACTIONS(186), - [anon_sym_to_json] = ACTIONS(186), - [anon_sym_write] = ACTIONS(186), + [anon_sym_while] = ACTIONS(148), + [anon_sym_for] = ACTIONS(150), + [anon_sym_asyncfor] = ACTIONS(152), + [anon_sym_return] = ACTIONS(154), + [anon_sym_assert] = ACTIONS(156), + [anon_sym_assert_equal] = ACTIONS(156), + [anon_sym_bash] = ACTIONS(156), + [anon_sym_download] = ACTIONS(156), + [anon_sym_either_or] = ACTIONS(156), + [anon_sym_fish] = ACTIONS(156), + [anon_sym_from_json] = ACTIONS(156), + [anon_sym_is_none] = ACTIONS(156), + [anon_sym_is_some] = ACTIONS(156), + [anon_sym_length] = ACTIONS(156), + [anon_sym_metadata] = ACTIONS(156), + [anon_sym_output] = ACTIONS(156), + [anon_sym_output_error] = ACTIONS(156), + [anon_sym_random] = ACTIONS(156), + [anon_sym_random_boolean] = ACTIONS(156), + [anon_sym_random_float] = ACTIONS(156), + [anon_sym_random_integer] = ACTIONS(156), + [anon_sym_read] = ACTIONS(156), + [anon_sym_to_json] = ACTIONS(156), + [anon_sym_write] = ACTIONS(156), }, [34] = { - [sym_statement] = STATE(260), - [sym_expression] = STATE(115), - [sym__expression_kind] = STATE(93), - [sym_block] = STATE(256), + [sym_statement] = STATE(266), + [sym_expression] = STATE(117), + [sym__expression_kind] = STATE(92), + [sym_block] = STATE(265), [sym_identifier] = STATE(113), - [sym_value] = STATE(93), - [sym_boolean] = STATE(107), - [sym_list] = STATE(107), - [sym_map] = STATE(107), - [sym_option] = STATE(107), + [sym_value] = STATE(92), + [sym_boolean] = STATE(112), + [sym_list] = STATE(112), + [sym_map] = STATE(112), + [sym_option] = STATE(112), [sym_index] = STATE(114), - [sym_math] = STATE(93), - [sym_logic] = STATE(93), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(245), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(92), - [sym_function_expression] = STATE(362), - [sym_function_call] = STATE(91), - [sym_yield] = STATE(91), - [sym_built_in_function] = STATE(103), - [sym__identifier_pattern] = ACTIONS(158), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(255), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(90), + [sym_function_expression] = STATE(391), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(110), + [sym__identifier_pattern] = ACTIONS(124), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_async] = ACTIONS(162), - [anon_sym_LBRACE] = ACTIONS(164), - [sym_integer] = ACTIONS(166), - [sym_float] = ACTIONS(168), - [sym_string] = ACTIONS(168), - [anon_sym_true] = ACTIONS(170), - [anon_sym_false] = ACTIONS(170), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_none] = ACTIONS(174), - [anon_sym_some] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_async] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(130), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(134), + [sym_string] = ACTIONS(134), + [anon_sym_true] = ACTIONS(136), + [anon_sym_false] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(138), + [anon_sym_none] = ACTIONS(140), + [anon_sym_some] = ACTIONS(142), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(180), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(186), - [anon_sym_assert_equal] = ACTIONS(186), - [anon_sym_bash] = ACTIONS(186), - [anon_sym_download] = ACTIONS(186), - [anon_sym_either_or] = ACTIONS(186), - [anon_sym_fish] = ACTIONS(186), - [anon_sym_from_json] = ACTIONS(186), - [anon_sym_is_none] = ACTIONS(186), - [anon_sym_is_some] = ACTIONS(186), - [anon_sym_length] = ACTIONS(186), - [anon_sym_metadata] = ACTIONS(186), - [anon_sym_output] = ACTIONS(186), - [anon_sym_output_error] = ACTIONS(186), - [anon_sym_random] = ACTIONS(186), - [anon_sym_random_boolean] = ACTIONS(186), - [anon_sym_random_float] = ACTIONS(186), - [anon_sym_random_integer] = ACTIONS(186), - [anon_sym_read] = ACTIONS(186), - [anon_sym_to_json] = ACTIONS(186), - [anon_sym_write] = ACTIONS(186), + [anon_sym_while] = ACTIONS(148), + [anon_sym_for] = ACTIONS(150), + [anon_sym_asyncfor] = ACTIONS(152), + [anon_sym_return] = ACTIONS(154), + [anon_sym_assert] = ACTIONS(156), + [anon_sym_assert_equal] = ACTIONS(156), + [anon_sym_bash] = ACTIONS(156), + [anon_sym_download] = ACTIONS(156), + [anon_sym_either_or] = ACTIONS(156), + [anon_sym_fish] = ACTIONS(156), + [anon_sym_from_json] = ACTIONS(156), + [anon_sym_is_none] = ACTIONS(156), + [anon_sym_is_some] = ACTIONS(156), + [anon_sym_length] = ACTIONS(156), + [anon_sym_metadata] = ACTIONS(156), + [anon_sym_output] = ACTIONS(156), + [anon_sym_output_error] = ACTIONS(156), + [anon_sym_random] = ACTIONS(156), + [anon_sym_random_boolean] = ACTIONS(156), + [anon_sym_random_float] = ACTIONS(156), + [anon_sym_random_integer] = ACTIONS(156), + [anon_sym_read] = ACTIONS(156), + [anon_sym_to_json] = ACTIONS(156), + [anon_sym_write] = ACTIONS(156), }, [35] = { - [sym_statement] = STATE(288), - [sym_expression] = STATE(230), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(264), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(264), - [sym_index_assignment] = STATE(264), - [sym_if_else] = STATE(264), - [sym_if] = STATE(273), - [sym_match] = STATE(264), - [sym_while] = STATE(264), - [sym_for] = STATE(264), - [sym_return] = STATE(264), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), - [sym__identifier_pattern] = ACTIONS(124), + [sym_statement] = STATE(264), + [sym_expression] = STATE(249), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(265), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(284), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_async] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(130), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(134), - [sym_string] = ACTIONS(134), - [anon_sym_true] = ACTIONS(136), - [anon_sym_false] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_none] = ACTIONS(140), - [anon_sym_some] = ACTIONS(142), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_asyncfor] = ACTIONS(152), - [anon_sym_return] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_assert_equal] = ACTIONS(156), - [anon_sym_bash] = ACTIONS(156), - [anon_sym_download] = ACTIONS(156), - [anon_sym_either_or] = ACTIONS(156), - [anon_sym_fish] = ACTIONS(156), - [anon_sym_from_json] = ACTIONS(156), - [anon_sym_is_none] = ACTIONS(156), - [anon_sym_is_some] = ACTIONS(156), - [anon_sym_length] = ACTIONS(156), - [anon_sym_metadata] = ACTIONS(156), - [anon_sym_output] = ACTIONS(156), - [anon_sym_output_error] = ACTIONS(156), - [anon_sym_random] = ACTIONS(156), - [anon_sym_random_boolean] = ACTIONS(156), - [anon_sym_random_float] = ACTIONS(156), - [anon_sym_random_integer] = ACTIONS(156), - [anon_sym_read] = ACTIONS(156), - [anon_sym_to_json] = ACTIONS(156), - [anon_sym_write] = ACTIONS(156), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [36] = { - [sym_statement] = STATE(260), - [sym_expression] = STATE(241), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(256), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(273), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), - [sym__identifier_pattern] = ACTIONS(124), + [sym_statement] = STATE(242), + [sym_expression] = STATE(80), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(244), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(244), + [sym_index_assignment] = STATE(244), + [sym_if_else] = STATE(244), + [sym_if] = STATE(230), + [sym_match] = STATE(244), + [sym_while] = STATE(244), + [sym_for] = STATE(244), + [sym_return] = STATE(244), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_async] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(130), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(134), - [sym_string] = ACTIONS(134), - [anon_sym_true] = ACTIONS(136), - [anon_sym_false] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_none] = ACTIONS(140), - [anon_sym_some] = ACTIONS(142), - [anon_sym_if] = ACTIONS(144), - [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_asyncfor] = ACTIONS(152), - [anon_sym_return] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_assert_equal] = ACTIONS(156), - [anon_sym_bash] = ACTIONS(156), - [anon_sym_download] = ACTIONS(156), - [anon_sym_either_or] = ACTIONS(156), - [anon_sym_fish] = ACTIONS(156), - [anon_sym_from_json] = ACTIONS(156), - [anon_sym_is_none] = ACTIONS(156), - [anon_sym_is_some] = ACTIONS(156), - [anon_sym_length] = ACTIONS(156), - [anon_sym_metadata] = ACTIONS(156), - [anon_sym_output] = ACTIONS(156), - [anon_sym_output_error] = ACTIONS(156), - [anon_sym_random] = ACTIONS(156), - [anon_sym_random_boolean] = ACTIONS(156), - [anon_sym_random_float] = ACTIONS(156), - [anon_sym_random_integer] = ACTIONS(156), - [anon_sym_read] = ACTIONS(156), - [anon_sym_to_json] = ACTIONS(156), - [anon_sym_write] = ACTIONS(156), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), }, [37] = { - [sym_statement] = STATE(259), - [sym_expression] = STATE(115), - [sym__expression_kind] = STATE(93), - [sym_block] = STATE(256), - [sym_identifier] = STATE(113), - [sym_value] = STATE(93), - [sym_boolean] = STATE(107), - [sym_list] = STATE(107), - [sym_map] = STATE(107), - [sym_option] = STATE(107), - [sym_index] = STATE(114), - [sym_math] = STATE(93), - [sym_logic] = STATE(93), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(245), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(92), - [sym_function_expression] = STATE(362), - [sym_function_call] = STATE(91), - [sym_yield] = STATE(91), - [sym_built_in_function] = STATE(103), - [sym__identifier_pattern] = ACTIONS(158), + [sym_statement] = STATE(248), + [sym_expression] = STATE(80), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(244), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(244), + [sym_index_assignment] = STATE(244), + [sym_if_else] = STATE(244), + [sym_if] = STATE(230), + [sym_match] = STATE(244), + [sym_while] = STATE(244), + [sym_for] = STATE(244), + [sym_return] = STATE(244), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_async] = ACTIONS(162), - [anon_sym_LBRACE] = ACTIONS(164), - [sym_integer] = ACTIONS(166), - [sym_float] = ACTIONS(168), - [sym_string] = ACTIONS(168), - [anon_sym_true] = ACTIONS(170), - [anon_sym_false] = ACTIONS(170), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_none] = ACTIONS(174), - [anon_sym_some] = ACTIONS(176), - [anon_sym_if] = ACTIONS(144), - [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(180), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_assert] = ACTIONS(186), - [anon_sym_assert_equal] = ACTIONS(186), - [anon_sym_bash] = ACTIONS(186), - [anon_sym_download] = ACTIONS(186), - [anon_sym_either_or] = ACTIONS(186), - [anon_sym_fish] = ACTIONS(186), - [anon_sym_from_json] = ACTIONS(186), - [anon_sym_is_none] = ACTIONS(186), - [anon_sym_is_some] = ACTIONS(186), - [anon_sym_length] = ACTIONS(186), - [anon_sym_metadata] = ACTIONS(186), - [anon_sym_output] = ACTIONS(186), - [anon_sym_output_error] = ACTIONS(186), - [anon_sym_random] = ACTIONS(186), - [anon_sym_random_boolean] = ACTIONS(186), - [anon_sym_random_float] = ACTIONS(186), - [anon_sym_random_integer] = ACTIONS(186), - [anon_sym_read] = ACTIONS(186), - [anon_sym_to_json] = ACTIONS(186), - [anon_sym_write] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), }, [38] = { - [sym_statement] = STATE(257), - [sym_expression] = STATE(115), - [sym__expression_kind] = STATE(93), - [sym_block] = STATE(256), - [sym_identifier] = STATE(113), - [sym_value] = STATE(93), - [sym_boolean] = STATE(107), - [sym_list] = STATE(107), - [sym_map] = STATE(107), - [sym_option] = STATE(107), - [sym_index] = STATE(114), - [sym_math] = STATE(93), - [sym_logic] = STATE(93), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(245), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(92), - [sym_function_expression] = STATE(362), - [sym_function_call] = STATE(91), - [sym_yield] = STATE(91), - [sym_built_in_function] = STATE(103), + [sym_statement] = STATE(240), + [sym_expression] = STATE(80), + [sym__expression_kind] = STATE(64), + [sym_block] = STATE(244), + [sym_identifier] = STATE(49), + [sym_value] = STATE(64), + [sym_boolean] = STATE(68), + [sym_list] = STATE(68), + [sym_map] = STATE(68), + [sym_option] = STATE(68), + [sym_index] = STATE(69), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(244), + [sym_index_assignment] = STATE(244), + [sym_if_else] = STATE(244), + [sym_if] = STATE(230), + [sym_match] = STATE(244), + [sym_while] = STATE(244), + [sym_for] = STATE(244), + [sym_return] = STATE(244), + [sym_function] = STATE(74), + [sym_function_expression] = STATE(394), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(77), + [sym_yield] = STATE(77), + [sym_built_in_function] = STATE(52), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_async] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(11), + [sym_integer] = ACTIONS(13), + [sym_float] = ACTIONS(15), + [sym_string] = ACTIONS(15), + [anon_sym_true] = ACTIONS(17), + [anon_sym_false] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_none] = ACTIONS(21), + [anon_sym_some] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_match] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_asyncfor] = ACTIONS(33), + [anon_sym_return] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_assert_equal] = ACTIONS(37), + [anon_sym_bash] = ACTIONS(37), + [anon_sym_download] = ACTIONS(37), + [anon_sym_either_or] = ACTIONS(37), + [anon_sym_fish] = ACTIONS(37), + [anon_sym_from_json] = ACTIONS(37), + [anon_sym_is_none] = ACTIONS(37), + [anon_sym_is_some] = ACTIONS(37), + [anon_sym_length] = ACTIONS(37), + [anon_sym_metadata] = ACTIONS(37), + [anon_sym_output] = ACTIONS(37), + [anon_sym_output_error] = ACTIONS(37), + [anon_sym_random] = ACTIONS(37), + [anon_sym_random_boolean] = ACTIONS(37), + [anon_sym_random_float] = ACTIONS(37), + [anon_sym_random_integer] = ACTIONS(37), + [anon_sym_read] = ACTIONS(37), + [anon_sym_to_json] = ACTIONS(37), + [anon_sym_write] = ACTIONS(37), + }, + [39] = { + [sym_statement] = STATE(272), + [sym_expression] = STATE(249), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(265), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(284), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(160), @@ -5413,301 +5578,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(186), [anon_sym_write] = ACTIONS(186), }, - [39] = { - [sym_statement] = STATE(288), - [sym_expression] = STATE(230), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(264), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(264), - [sym_index_assignment] = STATE(264), - [sym_if_else] = STATE(264), - [sym_if] = STATE(273), - [sym_match] = STATE(264), - [sym_while] = STATE(264), - [sym_for] = STATE(264), - [sym_return] = STATE(264), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), - [sym__identifier_pattern] = ACTIONS(124), + [40] = { + [sym_statement] = STATE(301), + [sym_expression] = STATE(253), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(276), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(276), + [sym_index_assignment] = STATE(276), + [sym_if_else] = STATE(276), + [sym_if] = STATE(284), + [sym_match] = STATE(276), + [sym_while] = STATE(276), + [sym_for] = STATE(276), + [sym_return] = STATE(276), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_async] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(130), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(134), - [sym_string] = ACTIONS(134), - [anon_sym_true] = ACTIONS(136), - [anon_sym_false] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_none] = ACTIONS(140), - [anon_sym_some] = ACTIONS(142), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_asyncfor] = ACTIONS(152), - [anon_sym_return] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_assert_equal] = ACTIONS(156), - [anon_sym_bash] = ACTIONS(156), - [anon_sym_download] = ACTIONS(156), - [anon_sym_either_or] = ACTIONS(156), - [anon_sym_fish] = ACTIONS(156), - [anon_sym_from_json] = ACTIONS(156), - [anon_sym_is_none] = ACTIONS(156), - [anon_sym_is_some] = ACTIONS(156), - [anon_sym_length] = ACTIONS(156), - [anon_sym_metadata] = ACTIONS(156), - [anon_sym_output] = ACTIONS(156), - [anon_sym_output_error] = ACTIONS(156), - [anon_sym_random] = ACTIONS(156), - [anon_sym_random_boolean] = ACTIONS(156), - [anon_sym_random_float] = ACTIONS(156), - [anon_sym_random_integer] = ACTIONS(156), - [anon_sym_read] = ACTIONS(156), - [anon_sym_to_json] = ACTIONS(156), - [anon_sym_write] = ACTIONS(156), - }, - [40] = { - [sym_statement] = STATE(232), - [sym_expression] = STATE(80), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(244), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(244), - [sym_index_assignment] = STATE(244), - [sym_if_else] = STATE(244), - [sym_if] = STATE(220), - [sym_match] = STATE(244), - [sym_while] = STATE(244), - [sym_for] = STATE(244), - [sym_return] = STATE(244), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [sym__identifier_pattern] = ACTIONS(5), - [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [41] = { - [sym_statement] = STATE(292), - [sym_expression] = STATE(230), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(264), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(264), - [sym_index_assignment] = STATE(264), - [sym_if_else] = STATE(264), - [sym_if] = STATE(273), - [sym_match] = STATE(264), - [sym_while] = STATE(264), - [sym_for] = STATE(264), - [sym_return] = STATE(264), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), - [sym__identifier_pattern] = ACTIONS(124), + [sym_statement] = STATE(266), + [sym_expression] = STATE(249), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(265), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(284), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_async] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(130), - [sym_integer] = ACTIONS(132), - [sym_float] = ACTIONS(134), - [sym_string] = ACTIONS(134), - [anon_sym_true] = ACTIONS(136), - [anon_sym_false] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_none] = ACTIONS(140), - [anon_sym_some] = ACTIONS(142), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), [anon_sym_if] = ACTIONS(144), [anon_sym_match] = ACTIONS(146), - [anon_sym_while] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_asyncfor] = ACTIONS(152), - [anon_sym_return] = ACTIONS(154), - [anon_sym_assert] = ACTIONS(156), - [anon_sym_assert_equal] = ACTIONS(156), - [anon_sym_bash] = ACTIONS(156), - [anon_sym_download] = ACTIONS(156), - [anon_sym_either_or] = ACTIONS(156), - [anon_sym_fish] = ACTIONS(156), - [anon_sym_from_json] = ACTIONS(156), - [anon_sym_is_none] = ACTIONS(156), - [anon_sym_is_some] = ACTIONS(156), - [anon_sym_length] = ACTIONS(156), - [anon_sym_metadata] = ACTIONS(156), - [anon_sym_output] = ACTIONS(156), - [anon_sym_output_error] = ACTIONS(156), - [anon_sym_random] = ACTIONS(156), - [anon_sym_random_boolean] = ACTIONS(156), - [anon_sym_random_float] = ACTIONS(156), - [anon_sym_random_integer] = ACTIONS(156), - [anon_sym_read] = ACTIONS(156), - [anon_sym_to_json] = ACTIONS(156), - [anon_sym_write] = ACTIONS(156), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [42] = { - [sym_statement] = STATE(231), - [sym_expression] = STATE(80), - [sym__expression_kind] = STATE(67), - [sym_block] = STATE(244), - [sym_identifier] = STATE(53), - [sym_value] = STATE(67), - [sym_boolean] = STATE(57), - [sym_list] = STATE(57), - [sym_map] = STATE(57), - [sym_option] = STATE(57), - [sym_index] = STATE(71), - [sym_math] = STATE(67), - [sym_logic] = STATE(67), - [sym_assignment] = STATE(244), - [sym_index_assignment] = STATE(244), - [sym_if_else] = STATE(244), - [sym_if] = STATE(220), - [sym_match] = STATE(244), - [sym_while] = STATE(244), - [sym_for] = STATE(244), - [sym_return] = STATE(244), - [sym_function] = STATE(66), - [sym_function_expression] = STATE(376), - [sym_function_call] = STATE(77), - [sym_yield] = STATE(77), - [sym_built_in_function] = STATE(49), - [sym__identifier_pattern] = ACTIONS(5), + [sym_statement] = STATE(267), + [sym_expression] = STATE(249), + [sym__expression_kind] = STATE(225), + [sym_block] = STATE(265), + [sym_identifier] = STATE(233), + [sym_value] = STATE(225), + [sym_boolean] = STATE(161), + [sym_list] = STATE(161), + [sym_map] = STATE(161), + [sym_option] = STATE(161), + [sym_index] = STATE(234), + [sym_math] = STATE(225), + [sym_logic] = STATE(225), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(284), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(170), + [sym_function_expression] = STATE(398), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(172), + [sym_yield] = STATE(172), + [sym_built_in_function] = STATE(160), + [sym__identifier_pattern] = ACTIONS(158), [sym__comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_async] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(11), - [sym_integer] = ACTIONS(13), - [sym_float] = ACTIONS(15), - [sym_string] = ACTIONS(15), - [anon_sym_true] = ACTIONS(17), - [anon_sym_false] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_none] = ACTIONS(21), - [anon_sym_some] = ACTIONS(23), - [anon_sym_if] = ACTIONS(25), - [anon_sym_match] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_asyncfor] = ACTIONS(33), - [anon_sym_return] = ACTIONS(35), - [anon_sym_assert] = ACTIONS(37), - [anon_sym_assert_equal] = ACTIONS(37), - [anon_sym_bash] = ACTIONS(37), - [anon_sym_download] = ACTIONS(37), - [anon_sym_either_or] = ACTIONS(37), - [anon_sym_fish] = ACTIONS(37), - [anon_sym_from_json] = ACTIONS(37), - [anon_sym_is_none] = ACTIONS(37), - [anon_sym_is_some] = ACTIONS(37), - [anon_sym_length] = ACTIONS(37), - [anon_sym_metadata] = ACTIONS(37), - [anon_sym_output] = ACTIONS(37), - [anon_sym_output_error] = ACTIONS(37), - [anon_sym_random] = ACTIONS(37), - [anon_sym_random_boolean] = ACTIONS(37), - [anon_sym_random_float] = ACTIONS(37), - [anon_sym_random_integer] = ACTIONS(37), - [anon_sym_read] = ACTIONS(37), - [anon_sym_to_json] = ACTIONS(37), - [anon_sym_write] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_async] = ACTIONS(162), + [anon_sym_LBRACE] = ACTIONS(164), + [sym_integer] = ACTIONS(166), + [sym_float] = ACTIONS(168), + [sym_string] = ACTIONS(168), + [anon_sym_true] = ACTIONS(170), + [anon_sym_false] = ACTIONS(170), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_none] = ACTIONS(174), + [anon_sym_some] = ACTIONS(176), + [anon_sym_if] = ACTIONS(144), + [anon_sym_match] = ACTIONS(146), + [anon_sym_while] = ACTIONS(178), + [anon_sym_for] = ACTIONS(180), + [anon_sym_asyncfor] = ACTIONS(182), + [anon_sym_return] = ACTIONS(184), + [anon_sym_assert] = ACTIONS(186), + [anon_sym_assert_equal] = ACTIONS(186), + [anon_sym_bash] = ACTIONS(186), + [anon_sym_download] = ACTIONS(186), + [anon_sym_either_or] = ACTIONS(186), + [anon_sym_fish] = ACTIONS(186), + [anon_sym_from_json] = ACTIONS(186), + [anon_sym_is_none] = ACTIONS(186), + [anon_sym_is_some] = ACTIONS(186), + [anon_sym_length] = ACTIONS(186), + [anon_sym_metadata] = ACTIONS(186), + [anon_sym_output] = ACTIONS(186), + [anon_sym_output_error] = ACTIONS(186), + [anon_sym_random] = ACTIONS(186), + [anon_sym_random_boolean] = ACTIONS(186), + [anon_sym_random_float] = ACTIONS(186), + [anon_sym_random_integer] = ACTIONS(186), + [anon_sym_read] = ACTIONS(186), + [anon_sym_to_json] = ACTIONS(186), + [anon_sym_write] = ACTIONS(186), }, [43] = { - [sym_statement] = STATE(257), - [sym_expression] = STATE(241), - [sym__expression_kind] = STATE(162), - [sym_block] = STATE(256), - [sym_identifier] = STATE(222), - [sym_value] = STATE(162), - [sym_boolean] = STATE(167), - [sym_list] = STATE(167), - [sym_map] = STATE(167), - [sym_option] = STATE(167), - [sym_index] = STATE(224), - [sym_math] = STATE(162), - [sym_logic] = STATE(162), - [sym_assignment] = STATE(256), - [sym_index_assignment] = STATE(256), - [sym_if_else] = STATE(256), - [sym_if] = STATE(273), - [sym_match] = STATE(256), - [sym_while] = STATE(256), - [sym_for] = STATE(256), - [sym_return] = STATE(256), - [sym_function] = STATE(175), - [sym_function_expression] = STATE(361), - [sym_function_call] = STATE(176), - [sym_yield] = STATE(176), - [sym_built_in_function] = STATE(166), + [sym_statement] = STATE(272), + [sym_expression] = STATE(117), + [sym__expression_kind] = STATE(92), + [sym_block] = STATE(265), + [sym_identifier] = STATE(113), + [sym_value] = STATE(92), + [sym_boolean] = STATE(112), + [sym_list] = STATE(112), + [sym_map] = STATE(112), + [sym_option] = STATE(112), + [sym_index] = STATE(114), + [sym_math] = STATE(92), + [sym_logic] = STATE(92), + [sym_assignment] = STATE(265), + [sym_index_assignment] = STATE(265), + [sym_if_else] = STATE(265), + [sym_if] = STATE(255), + [sym_match] = STATE(265), + [sym_while] = STATE(265), + [sym_for] = STATE(265), + [sym_return] = STATE(265), + [sym_function] = STATE(90), + [sym_function_expression] = STATE(391), + [sym__function_expression_kind] = STATE(78), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(110), [sym__identifier_pattern] = ACTIONS(124), [sym__comment] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(126), @@ -5749,8 +5851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(156), }, [44] = { - [sym_math_operator] = STATE(193), - [sym_logic_operator] = STATE(188), + [sym_math_operator] = STATE(181), + [sym_logic_operator] = STATE(182), [ts_builtin_sym_end] = ACTIONS(188), [sym__identifier_pattern] = ACTIONS(190), [sym__comment] = ACTIONS(3), @@ -5768,7 +5870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(190), [anon_sym_none] = ACTIONS(190), [anon_sym_some] = ACTIONS(190), - [anon_sym_COLON] = ACTIONS(188), + [anon_sym_COLON] = ACTIONS(192), [anon_sym_DOT_DOT] = ACTIONS(188), [anon_sym_PLUS] = ACTIONS(190), [anon_sym_DASH] = ACTIONS(190), @@ -5791,7 +5893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(190), [anon_sym_asyncfor] = ACTIONS(188), [anon_sym_return] = ACTIONS(190), - [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(194), [anon_sym_assert] = ACTIONS(190), [anon_sym_assert_equal] = ACTIONS(190), [anon_sym_bash] = ACTIONS(190), @@ -5814,8 +5916,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(190), }, [45] = { - [sym_math_operator] = STATE(193), - [sym_logic_operator] = STATE(188), + [sym_math_operator] = STATE(181), + [sym_logic_operator] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(196), + [sym__identifier_pattern] = ACTIONS(198), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(196), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_async] = ACTIONS(198), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_RBRACE] = ACTIONS(196), + [sym_integer] = ACTIONS(198), + [sym_float] = ACTIONS(196), + [sym_string] = ACTIONS(196), + [anon_sym_true] = ACTIONS(198), + [anon_sym_false] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_none] = ACTIONS(198), + [anon_sym_some] = ACTIONS(198), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_DOT_DOT] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_STAR] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(196), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_if] = ACTIONS(198), + [anon_sym_match] = ACTIONS(198), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(198), + [anon_sym_asyncfor] = ACTIONS(196), + [anon_sym_return] = ACTIONS(198), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_assert] = ACTIONS(198), + [anon_sym_assert_equal] = ACTIONS(198), + [anon_sym_bash] = ACTIONS(198), + [anon_sym_download] = ACTIONS(198), + [anon_sym_either_or] = ACTIONS(198), + [anon_sym_fish] = ACTIONS(198), + [anon_sym_from_json] = ACTIONS(198), + [anon_sym_is_none] = ACTIONS(198), + [anon_sym_is_some] = ACTIONS(198), + [anon_sym_length] = ACTIONS(198), + [anon_sym_metadata] = ACTIONS(198), + [anon_sym_output] = ACTIONS(198), + [anon_sym_output_error] = ACTIONS(198), + [anon_sym_random] = ACTIONS(198), + [anon_sym_random_boolean] = ACTIONS(198), + [anon_sym_random_float] = ACTIONS(198), + [anon_sym_random_integer] = ACTIONS(198), + [anon_sym_read] = ACTIONS(198), + [anon_sym_to_json] = ACTIONS(198), + [anon_sym_write] = ACTIONS(198), + }, + [46] = { + [sym_math_operator] = STATE(181), + [sym_logic_operator] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(200), + [sym__identifier_pattern] = ACTIONS(202), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(200), + [anon_sym_async] = ACTIONS(202), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(200), + [sym_integer] = ACTIONS(202), + [sym_float] = ACTIONS(200), + [sym_string] = ACTIONS(200), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_none] = ACTIONS(202), + [anon_sym_some] = ACTIONS(202), + [anon_sym_COLON] = ACTIONS(192), + [anon_sym_DOT_DOT] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_STAR] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(200), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_if] = ACTIONS(202), + [anon_sym_match] = ACTIONS(202), + [anon_sym_while] = ACTIONS(202), + [anon_sym_for] = ACTIONS(202), + [anon_sym_asyncfor] = ACTIONS(200), + [anon_sym_return] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(194), + [anon_sym_assert] = ACTIONS(202), + [anon_sym_assert_equal] = ACTIONS(202), + [anon_sym_bash] = ACTIONS(202), + [anon_sym_download] = ACTIONS(202), + [anon_sym_either_or] = ACTIONS(202), + [anon_sym_fish] = ACTIONS(202), + [anon_sym_from_json] = ACTIONS(202), + [anon_sym_is_none] = ACTIONS(202), + [anon_sym_is_some] = ACTIONS(202), + [anon_sym_length] = ACTIONS(202), + [anon_sym_metadata] = ACTIONS(202), + [anon_sym_output] = ACTIONS(202), + [anon_sym_output_error] = ACTIONS(202), + [anon_sym_random] = ACTIONS(202), + [anon_sym_random_boolean] = ACTIONS(202), + [anon_sym_random_float] = ACTIONS(202), + [anon_sym_random_integer] = ACTIONS(202), + [anon_sym_read] = ACTIONS(202), + [anon_sym_to_json] = ACTIONS(202), + [anon_sym_write] = ACTIONS(202), + }, + [47] = { + [sym_math_operator] = STATE(181), + [sym_logic_operator] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(204), + [sym__identifier_pattern] = ACTIONS(206), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_async] = ACTIONS(206), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [sym_integer] = ACTIONS(206), + [sym_float] = ACTIONS(204), + [sym_string] = ACTIONS(204), + [anon_sym_true] = ACTIONS(206), + [anon_sym_false] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_none] = ACTIONS(206), + [anon_sym_some] = ACTIONS(206), + [anon_sym_COLON] = ACTIONS(204), + [anon_sym_DOT_DOT] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_STAR] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(204), + [anon_sym_PERCENT] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_if] = ACTIONS(206), + [anon_sym_match] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_for] = ACTIONS(206), + [anon_sym_asyncfor] = ACTIONS(204), + [anon_sym_return] = ACTIONS(206), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_assert] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_bash] = ACTIONS(206), + [anon_sym_download] = ACTIONS(206), + [anon_sym_either_or] = ACTIONS(206), + [anon_sym_fish] = ACTIONS(206), + [anon_sym_from_json] = ACTIONS(206), + [anon_sym_is_none] = ACTIONS(206), + [anon_sym_is_some] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_metadata] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_output_error] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_random_boolean] = ACTIONS(206), + [anon_sym_random_float] = ACTIONS(206), + [anon_sym_random_integer] = ACTIONS(206), + [anon_sym_read] = ACTIONS(206), + [anon_sym_to_json] = ACTIONS(206), + [anon_sym_write] = ACTIONS(206), + }, + [48] = { + [sym_math_operator] = STATE(181), + [sym_logic_operator] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(204), + [sym__identifier_pattern] = ACTIONS(206), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_async] = ACTIONS(206), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [sym_integer] = ACTIONS(206), + [sym_float] = ACTIONS(204), + [sym_string] = ACTIONS(204), + [anon_sym_true] = ACTIONS(206), + [anon_sym_false] = ACTIONS(206), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_none] = ACTIONS(206), + [anon_sym_some] = ACTIONS(206), + [anon_sym_COLON] = ACTIONS(204), + [anon_sym_DOT_DOT] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_STAR] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(204), + [anon_sym_PERCENT] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_if] = ACTIONS(206), + [anon_sym_match] = ACTIONS(206), + [anon_sym_while] = ACTIONS(206), + [anon_sym_for] = ACTIONS(206), + [anon_sym_asyncfor] = ACTIONS(204), + [anon_sym_return] = ACTIONS(206), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_assert] = ACTIONS(206), + [anon_sym_assert_equal] = ACTIONS(206), + [anon_sym_bash] = ACTIONS(206), + [anon_sym_download] = ACTIONS(206), + [anon_sym_either_or] = ACTIONS(206), + [anon_sym_fish] = ACTIONS(206), + [anon_sym_from_json] = ACTIONS(206), + [anon_sym_is_none] = ACTIONS(206), + [anon_sym_is_some] = ACTIONS(206), + [anon_sym_length] = ACTIONS(206), + [anon_sym_metadata] = ACTIONS(206), + [anon_sym_output] = ACTIONS(206), + [anon_sym_output_error] = ACTIONS(206), + [anon_sym_random] = ACTIONS(206), + [anon_sym_random_boolean] = ACTIONS(206), + [anon_sym_random_float] = ACTIONS(206), + [anon_sym_random_integer] = ACTIONS(206), + [anon_sym_read] = ACTIONS(206), + [anon_sym_to_json] = ACTIONS(206), + [anon_sym_write] = ACTIONS(206), + }, + [49] = { + [sym_assignment_operator] = STATE(38), + [sym_type_definition] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(210), + [sym__identifier_pattern] = ACTIONS(212), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(214), + [anon_sym_async] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(210), + [sym_integer] = ACTIONS(212), + [sym_float] = ACTIONS(210), + [sym_string] = ACTIONS(210), + [anon_sym_true] = ACTIONS(212), + [anon_sym_false] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(216), + [anon_sym_none] = ACTIONS(212), + [anon_sym_some] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(210), + [anon_sym_PLUS] = ACTIONS(212), + [anon_sym_DASH] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_PERCENT] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(210), + [anon_sym_PIPE_PIPE] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_if] = ACTIONS(212), + [anon_sym_match] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_asyncfor] = ACTIONS(210), + [anon_sym_return] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(210), + [anon_sym_assert] = ACTIONS(212), + [anon_sym_assert_equal] = ACTIONS(212), + [anon_sym_bash] = ACTIONS(212), + [anon_sym_download] = ACTIONS(212), + [anon_sym_either_or] = ACTIONS(212), + [anon_sym_fish] = ACTIONS(212), + [anon_sym_from_json] = ACTIONS(212), + [anon_sym_is_none] = ACTIONS(212), + [anon_sym_is_some] = ACTIONS(212), + [anon_sym_length] = ACTIONS(212), + [anon_sym_metadata] = ACTIONS(212), + [anon_sym_output] = ACTIONS(212), + [anon_sym_output_error] = ACTIONS(212), + [anon_sym_random] = ACTIONS(212), + [anon_sym_random_boolean] = ACTIONS(212), + [anon_sym_random_float] = ACTIONS(212), + [anon_sym_random_integer] = ACTIONS(212), + [anon_sym_read] = ACTIONS(212), + [anon_sym_to_json] = ACTIONS(212), + [anon_sym_write] = ACTIONS(212), + }, + [50] = { + [sym_math_operator] = STATE(191), + [sym_logic_operator] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(196), + [sym__identifier_pattern] = ACTIONS(198), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(196), + [anon_sym_LPAREN] = ACTIONS(196), + [anon_sym_async] = ACTIONS(198), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_RBRACE] = ACTIONS(196), + [sym_integer] = ACTIONS(198), + [sym_float] = ACTIONS(196), + [sym_string] = ACTIONS(196), + [anon_sym_true] = ACTIONS(198), + [anon_sym_false] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_none] = ACTIONS(198), + [anon_sym_some] = ACTIONS(198), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_STAR] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(196), + [anon_sym_PERCENT] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_if] = ACTIONS(198), + [anon_sym_match] = ACTIONS(198), + [anon_sym_while] = ACTIONS(198), + [anon_sym_for] = ACTIONS(198), + [anon_sym_asyncfor] = ACTIONS(196), + [anon_sym_return] = ACTIONS(198), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_assert] = ACTIONS(198), + [anon_sym_assert_equal] = ACTIONS(198), + [anon_sym_bash] = ACTIONS(198), + [anon_sym_download] = ACTIONS(198), + [anon_sym_either_or] = ACTIONS(198), + [anon_sym_fish] = ACTIONS(198), + [anon_sym_from_json] = ACTIONS(198), + [anon_sym_is_none] = ACTIONS(198), + [anon_sym_is_some] = ACTIONS(198), + [anon_sym_length] = ACTIONS(198), + [anon_sym_metadata] = ACTIONS(198), + [anon_sym_output] = ACTIONS(198), + [anon_sym_output_error] = ACTIONS(198), + [anon_sym_random] = ACTIONS(198), + [anon_sym_random_boolean] = ACTIONS(198), + [anon_sym_random_float] = ACTIONS(198), + [anon_sym_random_integer] = ACTIONS(198), + [anon_sym_read] = ACTIONS(198), + [anon_sym_to_json] = ACTIONS(198), + [anon_sym_write] = ACTIONS(198), + }, + [51] = { + [sym_math_operator] = STATE(191), + [sym_logic_operator] = STATE(190), [ts_builtin_sym_end] = ACTIONS(188), [sym__identifier_pattern] = ACTIONS(190), [sym__comment] = ACTIONS(3), @@ -5833,8 +6323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(190), [anon_sym_none] = ACTIONS(190), [anon_sym_some] = ACTIONS(190), - [anon_sym_COLON] = ACTIONS(188), - [anon_sym_DOT_DOT] = ACTIONS(192), + [anon_sym_COLON] = ACTIONS(222), [anon_sym_PLUS] = ACTIONS(190), [anon_sym_DASH] = ACTIONS(190), [anon_sym_STAR] = ACTIONS(188), @@ -5856,7 +6345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(190), [anon_sym_asyncfor] = ACTIONS(188), [anon_sym_return] = ACTIONS(190), - [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(224), [anon_sym_assert] = ACTIONS(190), [anon_sym_assert_equal] = ACTIONS(190), [anon_sym_bash] = ACTIONS(190), @@ -5878,207 +6367,1590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(190), [anon_sym_write] = ACTIONS(190), }, - [46] = { - [sym_math_operator] = STATE(193), - [sym_logic_operator] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(194), - [sym__identifier_pattern] = ACTIONS(196), + [52] = { + [ts_builtin_sym_end] = ACTIONS(226), + [sym__identifier_pattern] = ACTIONS(228), [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_RBRACE] = ACTIONS(194), - [sym_integer] = ACTIONS(196), - [sym_float] = ACTIONS(194), - [sym_string] = ACTIONS(194), - [anon_sym_true] = ACTIONS(196), - [anon_sym_false] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(196), - [anon_sym_none] = ACTIONS(196), - [anon_sym_some] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PERCENT] = ACTIONS(194), - [anon_sym_EQ_EQ] = ACTIONS(194), - [anon_sym_BANG_EQ] = ACTIONS(194), - [anon_sym_AMP_AMP] = ACTIONS(194), - [anon_sym_PIPE_PIPE] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(194), - [anon_sym_LT_EQ] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(194), - [anon_sym_DASH_EQ] = ACTIONS(194), - [anon_sym_if] = ACTIONS(196), - [anon_sym_match] = ACTIONS(196), - [anon_sym_while] = ACTIONS(196), - [anon_sym_for] = ACTIONS(196), - [anon_sym_asyncfor] = ACTIONS(194), - [anon_sym_return] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(194), - [anon_sym_assert] = ACTIONS(196), - [anon_sym_assert_equal] = ACTIONS(196), - [anon_sym_bash] = ACTIONS(196), - [anon_sym_download] = ACTIONS(196), - [anon_sym_either_or] = ACTIONS(196), - [anon_sym_fish] = ACTIONS(196), - [anon_sym_from_json] = ACTIONS(196), - [anon_sym_is_none] = ACTIONS(196), - [anon_sym_is_some] = ACTIONS(196), - [anon_sym_length] = ACTIONS(196), - [anon_sym_metadata] = ACTIONS(196), - [anon_sym_output] = ACTIONS(196), - [anon_sym_output_error] = ACTIONS(196), - [anon_sym_random] = ACTIONS(196), - [anon_sym_random_boolean] = ACTIONS(196), - [anon_sym_random_float] = ACTIONS(196), - [anon_sym_random_integer] = ACTIONS(196), - [anon_sym_read] = ACTIONS(196), - [anon_sym_to_json] = ACTIONS(196), - [anon_sym_write] = ACTIONS(196), + [anon_sym_SEMI] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(226), + [anon_sym_async] = ACTIONS(228), + [anon_sym_LBRACE] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(226), + [sym_integer] = ACTIONS(228), + [sym_float] = ACTIONS(226), + [sym_string] = ACTIONS(226), + [anon_sym_true] = ACTIONS(228), + [anon_sym_false] = ACTIONS(228), + [anon_sym_LBRACK] = ACTIONS(226), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_none] = ACTIONS(228), + [anon_sym_some] = ACTIONS(228), + [anon_sym_COLON] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(226), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(228), + [anon_sym_STAR] = ACTIONS(226), + [anon_sym_SLASH] = ACTIONS(226), + [anon_sym_PERCENT] = ACTIONS(226), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_AMP_AMP] = ACTIONS(226), + [anon_sym_PIPE_PIPE] = ACTIONS(226), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(226), + [anon_sym_PLUS_EQ] = ACTIONS(226), + [anon_sym_DASH_EQ] = ACTIONS(226), + [anon_sym_if] = ACTIONS(228), + [anon_sym_match] = ACTIONS(228), + [anon_sym_while] = ACTIONS(228), + [anon_sym_for] = ACTIONS(228), + [anon_sym_asyncfor] = ACTIONS(226), + [anon_sym_in] = ACTIONS(228), + [anon_sym_return] = ACTIONS(228), + [anon_sym_DASH_GT] = ACTIONS(226), + [anon_sym_assert] = ACTIONS(228), + [anon_sym_assert_equal] = ACTIONS(228), + [anon_sym_bash] = ACTIONS(228), + [anon_sym_download] = ACTIONS(228), + [anon_sym_either_or] = ACTIONS(228), + [anon_sym_fish] = ACTIONS(228), + [anon_sym_from_json] = ACTIONS(228), + [anon_sym_is_none] = ACTIONS(228), + [anon_sym_is_some] = ACTIONS(228), + [anon_sym_length] = ACTIONS(228), + [anon_sym_metadata] = ACTIONS(228), + [anon_sym_output] = ACTIONS(228), + [anon_sym_output_error] = ACTIONS(228), + [anon_sym_random] = ACTIONS(228), + [anon_sym_random_boolean] = ACTIONS(228), + [anon_sym_random_float] = ACTIONS(228), + [anon_sym_random_integer] = ACTIONS(228), + [anon_sym_read] = ACTIONS(228), + [anon_sym_to_json] = ACTIONS(228), + [anon_sym_write] = ACTIONS(228), }, - [47] = { - [sym_math_operator] = STATE(193), - [sym_logic_operator] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(198), - [sym__identifier_pattern] = ACTIONS(200), + [53] = { + [sym_math_operator] = STATE(191), + [sym_logic_operator] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(200), + [sym__identifier_pattern] = ACTIONS(202), [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_async] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(198), - [sym_integer] = ACTIONS(200), - [sym_float] = ACTIONS(198), - [sym_string] = ACTIONS(198), - [anon_sym_true] = ACTIONS(200), - [anon_sym_false] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(200), - [anon_sym_none] = ACTIONS(200), - [anon_sym_some] = ACTIONS(200), - [anon_sym_COLON] = ACTIONS(202), - [anon_sym_DOT_DOT] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(200), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_EQ_EQ] = ACTIONS(198), - [anon_sym_BANG_EQ] = ACTIONS(198), - [anon_sym_AMP_AMP] = ACTIONS(198), - [anon_sym_PIPE_PIPE] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(200), - [anon_sym_LT] = ACTIONS(200), - [anon_sym_GT_EQ] = ACTIONS(198), - [anon_sym_LT_EQ] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(198), - [anon_sym_DASH_EQ] = ACTIONS(198), - [anon_sym_if] = ACTIONS(200), - [anon_sym_match] = ACTIONS(200), - [anon_sym_while] = ACTIONS(200), - [anon_sym_for] = ACTIONS(200), - [anon_sym_asyncfor] = ACTIONS(198), - [anon_sym_return] = ACTIONS(200), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(200), - [anon_sym_assert_equal] = ACTIONS(200), - [anon_sym_bash] = ACTIONS(200), - [anon_sym_download] = ACTIONS(200), - [anon_sym_either_or] = ACTIONS(200), - [anon_sym_fish] = ACTIONS(200), - [anon_sym_from_json] = ACTIONS(200), - [anon_sym_is_none] = ACTIONS(200), - [anon_sym_is_some] = ACTIONS(200), - [anon_sym_length] = ACTIONS(200), - [anon_sym_metadata] = ACTIONS(200), - [anon_sym_output] = ACTIONS(200), - [anon_sym_output_error] = ACTIONS(200), - [anon_sym_random] = ACTIONS(200), - [anon_sym_random_boolean] = ACTIONS(200), - [anon_sym_random_float] = ACTIONS(200), - [anon_sym_random_integer] = ACTIONS(200), - [anon_sym_read] = ACTIONS(200), - [anon_sym_to_json] = ACTIONS(200), - [anon_sym_write] = ACTIONS(200), + [anon_sym_SEMI] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(200), + [anon_sym_async] = ACTIONS(202), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(200), + [sym_integer] = ACTIONS(202), + [sym_float] = ACTIONS(200), + [sym_string] = ACTIONS(200), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_none] = ACTIONS(202), + [anon_sym_some] = ACTIONS(202), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_STAR] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(200), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_if] = ACTIONS(202), + [anon_sym_match] = ACTIONS(202), + [anon_sym_while] = ACTIONS(202), + [anon_sym_for] = ACTIONS(202), + [anon_sym_asyncfor] = ACTIONS(200), + [anon_sym_return] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(224), + [anon_sym_assert] = ACTIONS(202), + [anon_sym_assert_equal] = ACTIONS(202), + [anon_sym_bash] = ACTIONS(202), + [anon_sym_download] = ACTIONS(202), + [anon_sym_either_or] = ACTIONS(202), + [anon_sym_fish] = ACTIONS(202), + [anon_sym_from_json] = ACTIONS(202), + [anon_sym_is_none] = ACTIONS(202), + [anon_sym_is_some] = ACTIONS(202), + [anon_sym_length] = ACTIONS(202), + [anon_sym_metadata] = ACTIONS(202), + [anon_sym_output] = ACTIONS(202), + [anon_sym_output_error] = ACTIONS(202), + [anon_sym_random] = ACTIONS(202), + [anon_sym_random_boolean] = ACTIONS(202), + [anon_sym_random_float] = ACTIONS(202), + [anon_sym_random_integer] = ACTIONS(202), + [anon_sym_read] = ACTIONS(202), + [anon_sym_to_json] = ACTIONS(202), + [anon_sym_write] = ACTIONS(202), }, - [48] = { - [sym_math_operator] = STATE(193), - [sym_logic_operator] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(206), - [sym__identifier_pattern] = ACTIONS(208), + [54] = { + [ts_builtin_sym_end] = ACTIONS(230), + [sym__identifier_pattern] = ACTIONS(232), [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_async] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [sym_integer] = ACTIONS(208), - [sym_float] = ACTIONS(206), - [sym_string] = ACTIONS(206), - [anon_sym_true] = ACTIONS(208), - [anon_sym_false] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(208), - [anon_sym_none] = ACTIONS(208), - [anon_sym_some] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(202), - [anon_sym_DOT_DOT] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_PERCENT] = ACTIONS(206), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_if] = ACTIONS(208), - [anon_sym_match] = ACTIONS(208), - [anon_sym_while] = ACTIONS(208), - [anon_sym_for] = ACTIONS(208), - [anon_sym_asyncfor] = ACTIONS(206), - [anon_sym_return] = ACTIONS(208), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_assert] = ACTIONS(208), - [anon_sym_assert_equal] = ACTIONS(208), - [anon_sym_bash] = ACTIONS(208), - [anon_sym_download] = ACTIONS(208), - [anon_sym_either_or] = ACTIONS(208), - [anon_sym_fish] = ACTIONS(208), - [anon_sym_from_json] = ACTIONS(208), - [anon_sym_is_none] = ACTIONS(208), - [anon_sym_is_some] = ACTIONS(208), - [anon_sym_length] = ACTIONS(208), - [anon_sym_metadata] = ACTIONS(208), - [anon_sym_output] = ACTIONS(208), - [anon_sym_output_error] = ACTIONS(208), - [anon_sym_random] = ACTIONS(208), - [anon_sym_random_boolean] = ACTIONS(208), - [anon_sym_random_float] = ACTIONS(208), - [anon_sym_random_integer] = ACTIONS(208), - [anon_sym_read] = ACTIONS(208), - [anon_sym_to_json] = ACTIONS(208), - [anon_sym_write] = ACTIONS(208), + [anon_sym_SEMI] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(230), + [anon_sym_async] = ACTIONS(232), + [anon_sym_LBRACE] = ACTIONS(230), + [anon_sym_RBRACE] = ACTIONS(230), + [sym_integer] = ACTIONS(232), + [sym_float] = ACTIONS(230), + [sym_string] = ACTIONS(230), + [anon_sym_true] = ACTIONS(232), + [anon_sym_false] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(230), + [anon_sym_EQ] = ACTIONS(232), + [anon_sym_none] = ACTIONS(232), + [anon_sym_some] = ACTIONS(232), + [anon_sym_COLON] = ACTIONS(230), + [anon_sym_DOT_DOT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(232), + [anon_sym_DASH] = ACTIONS(232), + [anon_sym_STAR] = ACTIONS(230), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_EQ_EQ] = ACTIONS(230), + [anon_sym_BANG_EQ] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(230), + [anon_sym_PIPE_PIPE] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(232), + [anon_sym_LT] = ACTIONS(232), + [anon_sym_GT_EQ] = ACTIONS(230), + [anon_sym_LT_EQ] = ACTIONS(230), + [anon_sym_PLUS_EQ] = ACTIONS(230), + [anon_sym_DASH_EQ] = ACTIONS(230), + [anon_sym_if] = ACTIONS(232), + [anon_sym_match] = ACTIONS(232), + [anon_sym_while] = ACTIONS(232), + [anon_sym_for] = ACTIONS(232), + [anon_sym_asyncfor] = ACTIONS(230), + [anon_sym_in] = ACTIONS(232), + [anon_sym_return] = ACTIONS(232), + [anon_sym_DASH_GT] = ACTIONS(230), + [anon_sym_assert] = ACTIONS(232), + [anon_sym_assert_equal] = ACTIONS(232), + [anon_sym_bash] = ACTIONS(232), + [anon_sym_download] = ACTIONS(232), + [anon_sym_either_or] = ACTIONS(232), + [anon_sym_fish] = ACTIONS(232), + [anon_sym_from_json] = ACTIONS(232), + [anon_sym_is_none] = ACTIONS(232), + [anon_sym_is_some] = ACTIONS(232), + [anon_sym_length] = ACTIONS(232), + [anon_sym_metadata] = ACTIONS(232), + [anon_sym_output] = ACTIONS(232), + [anon_sym_output_error] = ACTIONS(232), + [anon_sym_random] = ACTIONS(232), + [anon_sym_random_boolean] = ACTIONS(232), + [anon_sym_random_float] = ACTIONS(232), + [anon_sym_random_integer] = ACTIONS(232), + [anon_sym_read] = ACTIONS(232), + [anon_sym_to_json] = ACTIONS(232), + [anon_sym_write] = ACTIONS(232), }, - [49] = { + [55] = { + [sym_assignment_operator] = STATE(38), + [sym_type_definition] = STATE(362), + [sym__identifier_pattern] = ACTIONS(212), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(214), + [anon_sym_async] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(210), + [sym_integer] = ACTIONS(212), + [sym_float] = ACTIONS(210), + [sym_string] = ACTIONS(210), + [anon_sym_true] = ACTIONS(212), + [anon_sym_false] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(234), + [anon_sym_none] = ACTIONS(212), + [anon_sym_some] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(210), + [anon_sym_PLUS] = ACTIONS(212), + [anon_sym_DASH] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_PERCENT] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(210), + [anon_sym_PIPE_PIPE] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_if] = ACTIONS(212), + [anon_sym_match] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_asyncfor] = ACTIONS(210), + [anon_sym_return] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(210), + [anon_sym_assert] = ACTIONS(212), + [anon_sym_assert_equal] = ACTIONS(212), + [anon_sym_bash] = ACTIONS(212), + [anon_sym_download] = ACTIONS(212), + [anon_sym_either_or] = ACTIONS(212), + [anon_sym_fish] = ACTIONS(212), + [anon_sym_from_json] = ACTIONS(212), + [anon_sym_is_none] = ACTIONS(212), + [anon_sym_is_some] = ACTIONS(212), + [anon_sym_length] = ACTIONS(212), + [anon_sym_metadata] = ACTIONS(212), + [anon_sym_output] = ACTIONS(212), + [anon_sym_output_error] = ACTIONS(212), + [anon_sym_random] = ACTIONS(212), + [anon_sym_random_boolean] = ACTIONS(212), + [anon_sym_random_float] = ACTIONS(212), + [anon_sym_random_integer] = ACTIONS(212), + [anon_sym_read] = ACTIONS(212), + [anon_sym_to_json] = ACTIONS(212), + [anon_sym_write] = ACTIONS(212), + }, + [56] = { + [ts_builtin_sym_end] = ACTIONS(236), + [sym__identifier_pattern] = ACTIONS(238), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(236), + [anon_sym_async] = ACTIONS(238), + [anon_sym_LBRACE] = ACTIONS(236), + [anon_sym_RBRACE] = ACTIONS(236), + [sym_integer] = ACTIONS(238), + [sym_float] = ACTIONS(236), + [sym_string] = ACTIONS(236), + [anon_sym_true] = ACTIONS(238), + [anon_sym_false] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(236), + [anon_sym_EQ] = ACTIONS(238), + [anon_sym_none] = ACTIONS(238), + [anon_sym_some] = ACTIONS(238), + [anon_sym_COLON] = ACTIONS(236), + [anon_sym_DOT_DOT] = ACTIONS(236), + [anon_sym_PLUS] = ACTIONS(238), + [anon_sym_DASH] = ACTIONS(238), + [anon_sym_STAR] = ACTIONS(236), + [anon_sym_SLASH] = ACTIONS(236), + [anon_sym_PERCENT] = ACTIONS(236), + [anon_sym_EQ_EQ] = ACTIONS(236), + [anon_sym_BANG_EQ] = ACTIONS(236), + [anon_sym_AMP_AMP] = ACTIONS(236), + [anon_sym_PIPE_PIPE] = ACTIONS(236), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(236), + [anon_sym_LT_EQ] = ACTIONS(236), + [anon_sym_PLUS_EQ] = ACTIONS(236), + [anon_sym_DASH_EQ] = ACTIONS(236), + [anon_sym_if] = ACTIONS(238), + [anon_sym_match] = ACTIONS(238), + [anon_sym_while] = ACTIONS(238), + [anon_sym_for] = ACTIONS(238), + [anon_sym_asyncfor] = ACTIONS(236), + [anon_sym_return] = ACTIONS(238), + [anon_sym_DASH_GT] = ACTIONS(236), + [anon_sym_assert] = ACTIONS(238), + [anon_sym_assert_equal] = ACTIONS(238), + [anon_sym_bash] = ACTIONS(238), + [anon_sym_download] = ACTIONS(238), + [anon_sym_either_or] = ACTIONS(238), + [anon_sym_fish] = ACTIONS(238), + [anon_sym_from_json] = ACTIONS(238), + [anon_sym_is_none] = ACTIONS(238), + [anon_sym_is_some] = ACTIONS(238), + [anon_sym_length] = ACTIONS(238), + [anon_sym_metadata] = ACTIONS(238), + [anon_sym_output] = ACTIONS(238), + [anon_sym_output_error] = ACTIONS(238), + [anon_sym_random] = ACTIONS(238), + [anon_sym_random_boolean] = ACTIONS(238), + [anon_sym_random_float] = ACTIONS(238), + [anon_sym_random_integer] = ACTIONS(238), + [anon_sym_read] = ACTIONS(238), + [anon_sym_to_json] = ACTIONS(238), + [anon_sym_write] = ACTIONS(238), + }, + [57] = { + [ts_builtin_sym_end] = ACTIONS(240), + [sym__identifier_pattern] = ACTIONS(242), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(240), + [anon_sym_async] = ACTIONS(242), + [anon_sym_LBRACE] = ACTIONS(240), + [anon_sym_RBRACE] = ACTIONS(240), + [sym_integer] = ACTIONS(242), + [sym_float] = ACTIONS(240), + [sym_string] = ACTIONS(240), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_LBRACK] = ACTIONS(240), + [anon_sym_EQ] = ACTIONS(242), + [anon_sym_none] = ACTIONS(242), + [anon_sym_some] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(240), + [anon_sym_DOT_DOT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(242), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_EQ_EQ] = ACTIONS(240), + [anon_sym_BANG_EQ] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(240), + [anon_sym_PIPE_PIPE] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT_EQ] = ACTIONS(240), + [anon_sym_LT_EQ] = ACTIONS(240), + [anon_sym_PLUS_EQ] = ACTIONS(240), + [anon_sym_DASH_EQ] = ACTIONS(240), + [anon_sym_if] = ACTIONS(242), + [anon_sym_match] = ACTIONS(242), + [anon_sym_while] = ACTIONS(242), + [anon_sym_for] = ACTIONS(242), + [anon_sym_asyncfor] = ACTIONS(240), + [anon_sym_return] = ACTIONS(242), + [anon_sym_DASH_GT] = ACTIONS(240), + [anon_sym_assert] = ACTIONS(242), + [anon_sym_assert_equal] = ACTIONS(242), + [anon_sym_bash] = ACTIONS(242), + [anon_sym_download] = ACTIONS(242), + [anon_sym_either_or] = ACTIONS(242), + [anon_sym_fish] = ACTIONS(242), + [anon_sym_from_json] = ACTIONS(242), + [anon_sym_is_none] = ACTIONS(242), + [anon_sym_is_some] = ACTIONS(242), + [anon_sym_length] = ACTIONS(242), + [anon_sym_metadata] = ACTIONS(242), + [anon_sym_output] = ACTIONS(242), + [anon_sym_output_error] = ACTIONS(242), + [anon_sym_random] = ACTIONS(242), + [anon_sym_random_boolean] = ACTIONS(242), + [anon_sym_random_float] = ACTIONS(242), + [anon_sym_random_integer] = ACTIONS(242), + [anon_sym_read] = ACTIONS(242), + [anon_sym_to_json] = ACTIONS(242), + [anon_sym_write] = ACTIONS(242), + }, + [58] = { + [ts_builtin_sym_end] = ACTIONS(244), + [sym__identifier_pattern] = ACTIONS(246), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(244), + [anon_sym_LPAREN] = ACTIONS(244), + [anon_sym_async] = ACTIONS(246), + [anon_sym_LBRACE] = ACTIONS(244), + [anon_sym_RBRACE] = ACTIONS(244), + [sym_integer] = ACTIONS(246), + [sym_float] = ACTIONS(244), + [sym_string] = ACTIONS(244), + [anon_sym_true] = ACTIONS(246), + [anon_sym_false] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(244), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_none] = ACTIONS(246), + [anon_sym_some] = ACTIONS(246), + [anon_sym_COLON] = ACTIONS(244), + [anon_sym_DOT_DOT] = ACTIONS(244), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(244), + [anon_sym_SLASH] = ACTIONS(244), + [anon_sym_PERCENT] = ACTIONS(244), + [anon_sym_EQ_EQ] = ACTIONS(244), + [anon_sym_BANG_EQ] = ACTIONS(244), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(244), + [anon_sym_LT_EQ] = ACTIONS(244), + [anon_sym_PLUS_EQ] = ACTIONS(244), + [anon_sym_DASH_EQ] = ACTIONS(244), + [anon_sym_if] = ACTIONS(246), + [anon_sym_match] = ACTIONS(246), + [anon_sym_while] = ACTIONS(246), + [anon_sym_for] = ACTIONS(246), + [anon_sym_asyncfor] = ACTIONS(244), + [anon_sym_return] = ACTIONS(246), + [anon_sym_DASH_GT] = ACTIONS(244), + [anon_sym_assert] = ACTIONS(246), + [anon_sym_assert_equal] = ACTIONS(246), + [anon_sym_bash] = ACTIONS(246), + [anon_sym_download] = ACTIONS(246), + [anon_sym_either_or] = ACTIONS(246), + [anon_sym_fish] = ACTIONS(246), + [anon_sym_from_json] = ACTIONS(246), + [anon_sym_is_none] = ACTIONS(246), + [anon_sym_is_some] = ACTIONS(246), + [anon_sym_length] = ACTIONS(246), + [anon_sym_metadata] = ACTIONS(246), + [anon_sym_output] = ACTIONS(246), + [anon_sym_output_error] = ACTIONS(246), + [anon_sym_random] = ACTIONS(246), + [anon_sym_random_boolean] = ACTIONS(246), + [anon_sym_random_float] = ACTIONS(246), + [anon_sym_random_integer] = ACTIONS(246), + [anon_sym_read] = ACTIONS(246), + [anon_sym_to_json] = ACTIONS(246), + [anon_sym_write] = ACTIONS(246), + }, + [59] = { + [ts_builtin_sym_end] = ACTIONS(248), + [sym__identifier_pattern] = ACTIONS(250), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_async] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(248), + [anon_sym_RBRACE] = ACTIONS(248), + [sym_integer] = ACTIONS(250), + [sym_float] = ACTIONS(248), + [sym_string] = ACTIONS(248), + [anon_sym_true] = ACTIONS(250), + [anon_sym_false] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(248), + [anon_sym_EQ] = ACTIONS(250), + [anon_sym_none] = ACTIONS(250), + [anon_sym_some] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(248), + [anon_sym_DOT_DOT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_EQ_EQ] = ACTIONS(248), + [anon_sym_BANG_EQ] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(248), + [anon_sym_LT_EQ] = ACTIONS(248), + [anon_sym_PLUS_EQ] = ACTIONS(248), + [anon_sym_DASH_EQ] = ACTIONS(248), + [anon_sym_if] = ACTIONS(250), + [anon_sym_match] = ACTIONS(250), + [anon_sym_while] = ACTIONS(250), + [anon_sym_for] = ACTIONS(250), + [anon_sym_asyncfor] = ACTIONS(248), + [anon_sym_return] = ACTIONS(250), + [anon_sym_DASH_GT] = ACTIONS(248), + [anon_sym_assert] = ACTIONS(250), + [anon_sym_assert_equal] = ACTIONS(250), + [anon_sym_bash] = ACTIONS(250), + [anon_sym_download] = ACTIONS(250), + [anon_sym_either_or] = ACTIONS(250), + [anon_sym_fish] = ACTIONS(250), + [anon_sym_from_json] = ACTIONS(250), + [anon_sym_is_none] = ACTIONS(250), + [anon_sym_is_some] = ACTIONS(250), + [anon_sym_length] = ACTIONS(250), + [anon_sym_metadata] = ACTIONS(250), + [anon_sym_output] = ACTIONS(250), + [anon_sym_output_error] = ACTIONS(250), + [anon_sym_random] = ACTIONS(250), + [anon_sym_random_boolean] = ACTIONS(250), + [anon_sym_random_float] = ACTIONS(250), + [anon_sym_random_integer] = ACTIONS(250), + [anon_sym_read] = ACTIONS(250), + [anon_sym_to_json] = ACTIONS(250), + [anon_sym_write] = ACTIONS(250), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(252), + [sym__identifier_pattern] = ACTIONS(254), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LPAREN] = ACTIONS(252), + [anon_sym_async] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(252), + [anon_sym_RBRACE] = ACTIONS(252), + [sym_integer] = ACTIONS(254), + [sym_float] = ACTIONS(252), + [sym_string] = ACTIONS(252), + [anon_sym_true] = ACTIONS(254), + [anon_sym_false] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(252), + [anon_sym_EQ] = ACTIONS(254), + [anon_sym_none] = ACTIONS(254), + [anon_sym_some] = ACTIONS(254), + [anon_sym_COLON] = ACTIONS(252), + [anon_sym_DOT_DOT] = ACTIONS(252), + [anon_sym_PLUS] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(254), + [anon_sym_STAR] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(252), + [anon_sym_PERCENT] = ACTIONS(252), + [anon_sym_EQ_EQ] = ACTIONS(252), + [anon_sym_BANG_EQ] = ACTIONS(252), + [anon_sym_AMP_AMP] = ACTIONS(252), + [anon_sym_PIPE_PIPE] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(254), + [anon_sym_LT] = ACTIONS(254), + [anon_sym_GT_EQ] = ACTIONS(252), + [anon_sym_LT_EQ] = ACTIONS(252), + [anon_sym_PLUS_EQ] = ACTIONS(252), + [anon_sym_DASH_EQ] = ACTIONS(252), + [anon_sym_if] = ACTIONS(254), + [anon_sym_match] = ACTIONS(254), + [anon_sym_while] = ACTIONS(254), + [anon_sym_for] = ACTIONS(254), + [anon_sym_asyncfor] = ACTIONS(252), + [anon_sym_return] = ACTIONS(254), + [anon_sym_DASH_GT] = ACTIONS(252), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_assert_equal] = ACTIONS(254), + [anon_sym_bash] = ACTIONS(254), + [anon_sym_download] = ACTIONS(254), + [anon_sym_either_or] = ACTIONS(254), + [anon_sym_fish] = ACTIONS(254), + [anon_sym_from_json] = ACTIONS(254), + [anon_sym_is_none] = ACTIONS(254), + [anon_sym_is_some] = ACTIONS(254), + [anon_sym_length] = ACTIONS(254), + [anon_sym_metadata] = ACTIONS(254), + [anon_sym_output] = ACTIONS(254), + [anon_sym_output_error] = ACTIONS(254), + [anon_sym_random] = ACTIONS(254), + [anon_sym_random_boolean] = ACTIONS(254), + [anon_sym_random_float] = ACTIONS(254), + [anon_sym_random_integer] = ACTIONS(254), + [anon_sym_read] = ACTIONS(254), + [anon_sym_to_json] = ACTIONS(254), + [anon_sym_write] = ACTIONS(254), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(256), + [sym__identifier_pattern] = ACTIONS(258), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(256), + [anon_sym_async] = ACTIONS(258), + [anon_sym_LBRACE] = ACTIONS(256), + [anon_sym_RBRACE] = ACTIONS(256), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(256), + [sym_string] = ACTIONS(256), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_none] = ACTIONS(258), + [anon_sym_some] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(256), + [anon_sym_DOT_DOT] = ACTIONS(256), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_SLASH] = ACTIONS(256), + [anon_sym_PERCENT] = ACTIONS(256), + [anon_sym_EQ_EQ] = ACTIONS(256), + [anon_sym_BANG_EQ] = ACTIONS(256), + [anon_sym_AMP_AMP] = ACTIONS(256), + [anon_sym_PIPE_PIPE] = ACTIONS(256), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(256), + [anon_sym_LT_EQ] = ACTIONS(256), + [anon_sym_PLUS_EQ] = ACTIONS(256), + [anon_sym_DASH_EQ] = ACTIONS(256), + [anon_sym_if] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_asyncfor] = ACTIONS(256), + [anon_sym_return] = ACTIONS(258), + [anon_sym_DASH_GT] = ACTIONS(256), + [anon_sym_assert] = ACTIONS(258), + [anon_sym_assert_equal] = ACTIONS(258), + [anon_sym_bash] = ACTIONS(258), + [anon_sym_download] = ACTIONS(258), + [anon_sym_either_or] = ACTIONS(258), + [anon_sym_fish] = ACTIONS(258), + [anon_sym_from_json] = ACTIONS(258), + [anon_sym_is_none] = ACTIONS(258), + [anon_sym_is_some] = ACTIONS(258), + [anon_sym_length] = ACTIONS(258), + [anon_sym_metadata] = ACTIONS(258), + [anon_sym_output] = ACTIONS(258), + [anon_sym_output_error] = ACTIONS(258), + [anon_sym_random] = ACTIONS(258), + [anon_sym_random_boolean] = ACTIONS(258), + [anon_sym_random_float] = ACTIONS(258), + [anon_sym_random_integer] = ACTIONS(258), + [anon_sym_read] = ACTIONS(258), + [anon_sym_to_json] = ACTIONS(258), + [anon_sym_write] = ACTIONS(258), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(260), + [sym__identifier_pattern] = ACTIONS(262), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(260), + [anon_sym_async] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(260), + [sym_integer] = ACTIONS(262), + [sym_float] = ACTIONS(260), + [sym_string] = ACTIONS(260), + [anon_sym_true] = ACTIONS(262), + [anon_sym_false] = ACTIONS(262), + [anon_sym_LBRACK] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_none] = ACTIONS(262), + [anon_sym_some] = ACTIONS(262), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_DOT_DOT] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(262), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_EQ_EQ] = ACTIONS(260), + [anon_sym_BANG_EQ] = ACTIONS(260), + [anon_sym_AMP_AMP] = ACTIONS(260), + [anon_sym_PIPE_PIPE] = ACTIONS(260), + [anon_sym_GT] = ACTIONS(262), + [anon_sym_LT] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(260), + [anon_sym_DASH_EQ] = ACTIONS(260), + [anon_sym_if] = ACTIONS(262), + [anon_sym_match] = ACTIONS(262), + [anon_sym_while] = ACTIONS(262), + [anon_sym_for] = ACTIONS(262), + [anon_sym_asyncfor] = ACTIONS(260), + [anon_sym_return] = ACTIONS(262), + [anon_sym_DASH_GT] = ACTIONS(260), + [anon_sym_assert] = ACTIONS(262), + [anon_sym_assert_equal] = ACTIONS(262), + [anon_sym_bash] = ACTIONS(262), + [anon_sym_download] = ACTIONS(262), + [anon_sym_either_or] = ACTIONS(262), + [anon_sym_fish] = ACTIONS(262), + [anon_sym_from_json] = ACTIONS(262), + [anon_sym_is_none] = ACTIONS(262), + [anon_sym_is_some] = ACTIONS(262), + [anon_sym_length] = ACTIONS(262), + [anon_sym_metadata] = ACTIONS(262), + [anon_sym_output] = ACTIONS(262), + [anon_sym_output_error] = ACTIONS(262), + [anon_sym_random] = ACTIONS(262), + [anon_sym_random_boolean] = ACTIONS(262), + [anon_sym_random_float] = ACTIONS(262), + [anon_sym_random_integer] = ACTIONS(262), + [anon_sym_read] = ACTIONS(262), + [anon_sym_to_json] = ACTIONS(262), + [anon_sym_write] = ACTIONS(262), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(264), + [sym__identifier_pattern] = ACTIONS(266), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(264), + [anon_sym_async] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(264), + [sym_integer] = ACTIONS(266), + [sym_float] = ACTIONS(264), + [sym_string] = ACTIONS(264), + [anon_sym_true] = ACTIONS(266), + [anon_sym_false] = ACTIONS(266), + [anon_sym_LBRACK] = ACTIONS(264), + [anon_sym_EQ] = ACTIONS(266), + [anon_sym_none] = ACTIONS(266), + [anon_sym_some] = ACTIONS(266), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_DOT_DOT] = ACTIONS(264), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_EQ_EQ] = ACTIONS(264), + [anon_sym_BANG_EQ] = ACTIONS(264), + [anon_sym_AMP_AMP] = ACTIONS(264), + [anon_sym_PIPE_PIPE] = ACTIONS(264), + [anon_sym_GT] = ACTIONS(266), + [anon_sym_LT] = ACTIONS(266), + [anon_sym_GT_EQ] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(264), + [anon_sym_PLUS_EQ] = ACTIONS(264), + [anon_sym_DASH_EQ] = ACTIONS(264), + [anon_sym_if] = ACTIONS(266), + [anon_sym_match] = ACTIONS(266), + [anon_sym_while] = ACTIONS(266), + [anon_sym_for] = ACTIONS(266), + [anon_sym_asyncfor] = ACTIONS(264), + [anon_sym_return] = ACTIONS(266), + [anon_sym_DASH_GT] = ACTIONS(264), + [anon_sym_assert] = ACTIONS(266), + [anon_sym_assert_equal] = ACTIONS(266), + [anon_sym_bash] = ACTIONS(266), + [anon_sym_download] = ACTIONS(266), + [anon_sym_either_or] = ACTIONS(266), + [anon_sym_fish] = ACTIONS(266), + [anon_sym_from_json] = ACTIONS(266), + [anon_sym_is_none] = ACTIONS(266), + [anon_sym_is_some] = ACTIONS(266), + [anon_sym_length] = ACTIONS(266), + [anon_sym_metadata] = ACTIONS(266), + [anon_sym_output] = ACTIONS(266), + [anon_sym_output_error] = ACTIONS(266), + [anon_sym_random] = ACTIONS(266), + [anon_sym_random_boolean] = ACTIONS(266), + [anon_sym_random_float] = ACTIONS(266), + [anon_sym_random_integer] = ACTIONS(266), + [anon_sym_read] = ACTIONS(266), + [anon_sym_to_json] = ACTIONS(266), + [anon_sym_write] = ACTIONS(266), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(268), + [sym__identifier_pattern] = ACTIONS(270), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(268), + [anon_sym_async] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(268), + [sym_integer] = ACTIONS(270), + [sym_float] = ACTIONS(268), + [sym_string] = ACTIONS(268), + [anon_sym_true] = ACTIONS(270), + [anon_sym_false] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_EQ] = ACTIONS(270), + [anon_sym_none] = ACTIONS(270), + [anon_sym_some] = ACTIONS(270), + [anon_sym_COLON] = ACTIONS(268), + [anon_sym_DOT_DOT] = ACTIONS(268), + [anon_sym_PLUS] = ACTIONS(270), + [anon_sym_DASH] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(268), + [anon_sym_SLASH] = ACTIONS(268), + [anon_sym_PERCENT] = ACTIONS(268), + [anon_sym_EQ_EQ] = ACTIONS(268), + [anon_sym_BANG_EQ] = ACTIONS(268), + [anon_sym_AMP_AMP] = ACTIONS(268), + [anon_sym_PIPE_PIPE] = ACTIONS(268), + [anon_sym_GT] = ACTIONS(270), + [anon_sym_LT] = ACTIONS(270), + [anon_sym_GT_EQ] = ACTIONS(268), + [anon_sym_LT_EQ] = ACTIONS(268), + [anon_sym_PLUS_EQ] = ACTIONS(268), + [anon_sym_DASH_EQ] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_match] = ACTIONS(270), + [anon_sym_while] = ACTIONS(270), + [anon_sym_for] = ACTIONS(270), + [anon_sym_asyncfor] = ACTIONS(268), + [anon_sym_return] = ACTIONS(270), + [anon_sym_DASH_GT] = ACTIONS(268), + [anon_sym_assert] = ACTIONS(270), + [anon_sym_assert_equal] = ACTIONS(270), + [anon_sym_bash] = ACTIONS(270), + [anon_sym_download] = ACTIONS(270), + [anon_sym_either_or] = ACTIONS(270), + [anon_sym_fish] = ACTIONS(270), + [anon_sym_from_json] = ACTIONS(270), + [anon_sym_is_none] = ACTIONS(270), + [anon_sym_is_some] = ACTIONS(270), + [anon_sym_length] = ACTIONS(270), + [anon_sym_metadata] = ACTIONS(270), + [anon_sym_output] = ACTIONS(270), + [anon_sym_output_error] = ACTIONS(270), + [anon_sym_random] = ACTIONS(270), + [anon_sym_random_boolean] = ACTIONS(270), + [anon_sym_random_float] = ACTIONS(270), + [anon_sym_random_integer] = ACTIONS(270), + [anon_sym_read] = ACTIONS(270), + [anon_sym_to_json] = ACTIONS(270), + [anon_sym_write] = ACTIONS(270), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(272), + [sym__identifier_pattern] = ACTIONS(274), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(272), + [anon_sym_async] = ACTIONS(274), + [anon_sym_LBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(272), + [sym_integer] = ACTIONS(274), + [sym_float] = ACTIONS(272), + [sym_string] = ACTIONS(272), + [anon_sym_true] = ACTIONS(274), + [anon_sym_false] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_none] = ACTIONS(274), + [anon_sym_some] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(272), + [anon_sym_DOT_DOT] = ACTIONS(272), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(274), + [anon_sym_STAR] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(272), + [anon_sym_PERCENT] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_AMP_AMP] = ACTIONS(272), + [anon_sym_PIPE_PIPE] = ACTIONS(272), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(272), + [anon_sym_DASH_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [anon_sym_for] = ACTIONS(274), + [anon_sym_asyncfor] = ACTIONS(272), + [anon_sym_return] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(272), + [anon_sym_assert] = ACTIONS(274), + [anon_sym_assert_equal] = ACTIONS(274), + [anon_sym_bash] = ACTIONS(274), + [anon_sym_download] = ACTIONS(274), + [anon_sym_either_or] = ACTIONS(274), + [anon_sym_fish] = ACTIONS(274), + [anon_sym_from_json] = ACTIONS(274), + [anon_sym_is_none] = ACTIONS(274), + [anon_sym_is_some] = ACTIONS(274), + [anon_sym_length] = ACTIONS(274), + [anon_sym_metadata] = ACTIONS(274), + [anon_sym_output] = ACTIONS(274), + [anon_sym_output_error] = ACTIONS(274), + [anon_sym_random] = ACTIONS(274), + [anon_sym_random_boolean] = ACTIONS(274), + [anon_sym_random_float] = ACTIONS(274), + [anon_sym_random_integer] = ACTIONS(274), + [anon_sym_read] = ACTIONS(274), + [anon_sym_to_json] = ACTIONS(274), + [anon_sym_write] = ACTIONS(274), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(276), + [sym__identifier_pattern] = ACTIONS(278), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_async] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(276), + [anon_sym_RBRACE] = ACTIONS(276), + [sym_integer] = ACTIONS(278), + [sym_float] = ACTIONS(276), + [sym_string] = ACTIONS(276), + [anon_sym_true] = ACTIONS(278), + [anon_sym_false] = ACTIONS(278), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_none] = ACTIONS(278), + [anon_sym_some] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(276), + [anon_sym_DOT_DOT] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(278), + [anon_sym_STAR] = ACTIONS(276), + [anon_sym_SLASH] = ACTIONS(276), + [anon_sym_PERCENT] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_if] = ACTIONS(278), + [anon_sym_match] = ACTIONS(278), + [anon_sym_while] = ACTIONS(278), + [anon_sym_for] = ACTIONS(278), + [anon_sym_asyncfor] = ACTIONS(276), + [anon_sym_return] = ACTIONS(278), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_assert] = ACTIONS(278), + [anon_sym_assert_equal] = ACTIONS(278), + [anon_sym_bash] = ACTIONS(278), + [anon_sym_download] = ACTIONS(278), + [anon_sym_either_or] = ACTIONS(278), + [anon_sym_fish] = ACTIONS(278), + [anon_sym_from_json] = ACTIONS(278), + [anon_sym_is_none] = ACTIONS(278), + [anon_sym_is_some] = ACTIONS(278), + [anon_sym_length] = ACTIONS(278), + [anon_sym_metadata] = ACTIONS(278), + [anon_sym_output] = ACTIONS(278), + [anon_sym_output_error] = ACTIONS(278), + [anon_sym_random] = ACTIONS(278), + [anon_sym_random_boolean] = ACTIONS(278), + [anon_sym_random_float] = ACTIONS(278), + [anon_sym_random_integer] = ACTIONS(278), + [anon_sym_read] = ACTIONS(278), + [anon_sym_to_json] = ACTIONS(278), + [anon_sym_write] = ACTIONS(278), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(280), + [sym__identifier_pattern] = ACTIONS(282), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(280), + [anon_sym_async] = ACTIONS(282), + [anon_sym_LBRACE] = ACTIONS(280), + [anon_sym_RBRACE] = ACTIONS(280), + [sym_integer] = ACTIONS(282), + [sym_float] = ACTIONS(280), + [sym_string] = ACTIONS(280), + [anon_sym_true] = ACTIONS(282), + [anon_sym_false] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(282), + [anon_sym_none] = ACTIONS(282), + [anon_sym_some] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_DOT_DOT] = ACTIONS(280), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(280), + [anon_sym_SLASH] = ACTIONS(280), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_EQ_EQ] = ACTIONS(280), + [anon_sym_BANG_EQ] = ACTIONS(280), + [anon_sym_AMP_AMP] = ACTIONS(280), + [anon_sym_PIPE_PIPE] = ACTIONS(280), + [anon_sym_GT] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(280), + [anon_sym_LT_EQ] = ACTIONS(280), + [anon_sym_PLUS_EQ] = ACTIONS(280), + [anon_sym_DASH_EQ] = ACTIONS(280), + [anon_sym_if] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [anon_sym_for] = ACTIONS(282), + [anon_sym_asyncfor] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(280), + [anon_sym_assert] = ACTIONS(282), + [anon_sym_assert_equal] = ACTIONS(282), + [anon_sym_bash] = ACTIONS(282), + [anon_sym_download] = ACTIONS(282), + [anon_sym_either_or] = ACTIONS(282), + [anon_sym_fish] = ACTIONS(282), + [anon_sym_from_json] = ACTIONS(282), + [anon_sym_is_none] = ACTIONS(282), + [anon_sym_is_some] = ACTIONS(282), + [anon_sym_length] = ACTIONS(282), + [anon_sym_metadata] = ACTIONS(282), + [anon_sym_output] = ACTIONS(282), + [anon_sym_output_error] = ACTIONS(282), + [anon_sym_random] = ACTIONS(282), + [anon_sym_random_boolean] = ACTIONS(282), + [anon_sym_random_float] = ACTIONS(282), + [anon_sym_random_integer] = ACTIONS(282), + [anon_sym_read] = ACTIONS(282), + [anon_sym_to_json] = ACTIONS(282), + [anon_sym_write] = ACTIONS(282), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(284), + [sym__identifier_pattern] = ACTIONS(286), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_async] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(284), + [sym_string] = ACTIONS(284), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_none] = ACTIONS(286), + [anon_sym_some] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_asyncfor] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_assert] = ACTIONS(286), + [anon_sym_assert_equal] = ACTIONS(286), + [anon_sym_bash] = ACTIONS(286), + [anon_sym_download] = ACTIONS(286), + [anon_sym_either_or] = ACTIONS(286), + [anon_sym_fish] = ACTIONS(286), + [anon_sym_from_json] = ACTIONS(286), + [anon_sym_is_none] = ACTIONS(286), + [anon_sym_is_some] = ACTIONS(286), + [anon_sym_length] = ACTIONS(286), + [anon_sym_metadata] = ACTIONS(286), + [anon_sym_output] = ACTIONS(286), + [anon_sym_output_error] = ACTIONS(286), + [anon_sym_random] = ACTIONS(286), + [anon_sym_random_boolean] = ACTIONS(286), + [anon_sym_random_float] = ACTIONS(286), + [anon_sym_random_integer] = ACTIONS(286), + [anon_sym_read] = ACTIONS(286), + [anon_sym_to_json] = ACTIONS(286), + [anon_sym_write] = ACTIONS(286), + }, + [69] = { + [sym_assignment_operator] = STATE(37), [ts_builtin_sym_end] = ACTIONS(210), [sym__identifier_pattern] = ACTIONS(212), [sym__comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(214), + [anon_sym_async] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(210), + [sym_integer] = ACTIONS(212), + [sym_float] = ACTIONS(210), + [sym_string] = ACTIONS(210), + [anon_sym_true] = ACTIONS(212), + [anon_sym_false] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(216), + [anon_sym_none] = ACTIONS(212), + [anon_sym_some] = ACTIONS(212), + [anon_sym_COLON] = ACTIONS(210), + [anon_sym_PLUS] = ACTIONS(212), + [anon_sym_DASH] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_PERCENT] = ACTIONS(210), + [anon_sym_EQ_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ] = ACTIONS(210), + [anon_sym_AMP_AMP] = ACTIONS(210), + [anon_sym_PIPE_PIPE] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(220), + [anon_sym_DASH_EQ] = ACTIONS(220), + [anon_sym_if] = ACTIONS(212), + [anon_sym_match] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_asyncfor] = ACTIONS(210), + [anon_sym_return] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(210), + [anon_sym_assert] = ACTIONS(212), + [anon_sym_assert_equal] = ACTIONS(212), + [anon_sym_bash] = ACTIONS(212), + [anon_sym_download] = ACTIONS(212), + [anon_sym_either_or] = ACTIONS(212), + [anon_sym_fish] = ACTIONS(212), + [anon_sym_from_json] = ACTIONS(212), + [anon_sym_is_none] = ACTIONS(212), + [anon_sym_is_some] = ACTIONS(212), + [anon_sym_length] = ACTIONS(212), + [anon_sym_metadata] = ACTIONS(212), + [anon_sym_output] = ACTIONS(212), + [anon_sym_output_error] = ACTIONS(212), + [anon_sym_random] = ACTIONS(212), + [anon_sym_random_boolean] = ACTIONS(212), + [anon_sym_random_float] = ACTIONS(212), + [anon_sym_random_integer] = ACTIONS(212), + [anon_sym_read] = ACTIONS(212), + [anon_sym_to_json] = ACTIONS(212), + [anon_sym_write] = ACTIONS(212), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(288), + [sym__identifier_pattern] = ACTIONS(290), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_async] = ACTIONS(290), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(288), + [sym_integer] = ACTIONS(290), + [sym_float] = ACTIONS(288), + [sym_string] = ACTIONS(288), + [anon_sym_true] = ACTIONS(290), + [anon_sym_false] = ACTIONS(290), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(290), + [anon_sym_none] = ACTIONS(290), + [anon_sym_some] = ACTIONS(290), + [anon_sym_COLON] = ACTIONS(288), + [anon_sym_DOT_DOT] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(290), + [anon_sym_DASH] = ACTIONS(290), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_SLASH] = ACTIONS(288), + [anon_sym_PERCENT] = ACTIONS(288), + [anon_sym_EQ_EQ] = ACTIONS(288), + [anon_sym_BANG_EQ] = ACTIONS(288), + [anon_sym_AMP_AMP] = ACTIONS(288), + [anon_sym_PIPE_PIPE] = ACTIONS(288), + [anon_sym_GT] = ACTIONS(290), + [anon_sym_LT] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(288), + [anon_sym_LT_EQ] = ACTIONS(288), + [anon_sym_PLUS_EQ] = ACTIONS(288), + [anon_sym_DASH_EQ] = ACTIONS(288), + [anon_sym_if] = ACTIONS(290), + [anon_sym_match] = ACTIONS(290), + [anon_sym_while] = ACTIONS(290), + [anon_sym_for] = ACTIONS(290), + [anon_sym_asyncfor] = ACTIONS(288), + [anon_sym_return] = ACTIONS(290), + [anon_sym_DASH_GT] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), + [anon_sym_assert_equal] = ACTIONS(290), + [anon_sym_bash] = ACTIONS(290), + [anon_sym_download] = ACTIONS(290), + [anon_sym_either_or] = ACTIONS(290), + [anon_sym_fish] = ACTIONS(290), + [anon_sym_from_json] = ACTIONS(290), + [anon_sym_is_none] = ACTIONS(290), + [anon_sym_is_some] = ACTIONS(290), + [anon_sym_length] = ACTIONS(290), + [anon_sym_metadata] = ACTIONS(290), + [anon_sym_output] = ACTIONS(290), + [anon_sym_output_error] = ACTIONS(290), + [anon_sym_random] = ACTIONS(290), + [anon_sym_random_boolean] = ACTIONS(290), + [anon_sym_random_float] = ACTIONS(290), + [anon_sym_random_integer] = ACTIONS(290), + [anon_sym_read] = ACTIONS(290), + [anon_sym_to_json] = ACTIONS(290), + [anon_sym_write] = ACTIONS(290), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(292), + [sym__identifier_pattern] = ACTIONS(294), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(292), + [anon_sym_LPAREN] = ACTIONS(292), + [anon_sym_async] = ACTIONS(294), + [anon_sym_LBRACE] = ACTIONS(292), + [anon_sym_RBRACE] = ACTIONS(292), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(292), + [sym_string] = ACTIONS(292), + [anon_sym_true] = ACTIONS(294), + [anon_sym_false] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(292), + [anon_sym_EQ] = ACTIONS(294), + [anon_sym_none] = ACTIONS(294), + [anon_sym_some] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(292), + [anon_sym_DOT_DOT] = ACTIONS(292), + [anon_sym_PLUS] = ACTIONS(294), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_STAR] = ACTIONS(292), + [anon_sym_SLASH] = ACTIONS(292), + [anon_sym_PERCENT] = ACTIONS(292), + [anon_sym_EQ_EQ] = ACTIONS(292), + [anon_sym_BANG_EQ] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(292), + [anon_sym_PIPE_PIPE] = ACTIONS(292), + [anon_sym_GT] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_GT_EQ] = ACTIONS(292), + [anon_sym_LT_EQ] = ACTIONS(292), + [anon_sym_PLUS_EQ] = ACTIONS(292), + [anon_sym_DASH_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(294), + [anon_sym_match] = ACTIONS(294), + [anon_sym_while] = ACTIONS(294), + [anon_sym_for] = ACTIONS(294), + [anon_sym_asyncfor] = ACTIONS(292), + [anon_sym_return] = ACTIONS(294), + [anon_sym_DASH_GT] = ACTIONS(292), + [anon_sym_assert] = ACTIONS(294), + [anon_sym_assert_equal] = ACTIONS(294), + [anon_sym_bash] = ACTIONS(294), + [anon_sym_download] = ACTIONS(294), + [anon_sym_either_or] = ACTIONS(294), + [anon_sym_fish] = ACTIONS(294), + [anon_sym_from_json] = ACTIONS(294), + [anon_sym_is_none] = ACTIONS(294), + [anon_sym_is_some] = ACTIONS(294), + [anon_sym_length] = ACTIONS(294), + [anon_sym_metadata] = ACTIONS(294), + [anon_sym_output] = ACTIONS(294), + [anon_sym_output_error] = ACTIONS(294), + [anon_sym_random] = ACTIONS(294), + [anon_sym_random_boolean] = ACTIONS(294), + [anon_sym_random_float] = ACTIONS(294), + [anon_sym_random_integer] = ACTIONS(294), + [anon_sym_read] = ACTIONS(294), + [anon_sym_to_json] = ACTIONS(294), + [anon_sym_write] = ACTIONS(294), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(296), + [sym__identifier_pattern] = ACTIONS(298), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(296), + [anon_sym_async] = ACTIONS(298), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_RBRACE] = ACTIONS(296), + [sym_integer] = ACTIONS(298), + [sym_float] = ACTIONS(296), + [sym_string] = ACTIONS(296), + [anon_sym_true] = ACTIONS(298), + [anon_sym_false] = ACTIONS(298), + [anon_sym_LBRACK] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(298), + [anon_sym_none] = ACTIONS(298), + [anon_sym_some] = ACTIONS(298), + [anon_sym_COLON] = ACTIONS(296), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(296), + [anon_sym_SLASH] = ACTIONS(296), + [anon_sym_PERCENT] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(296), + [anon_sym_BANG_EQ] = ACTIONS(296), + [anon_sym_AMP_AMP] = ACTIONS(296), + [anon_sym_PIPE_PIPE] = ACTIONS(296), + [anon_sym_GT] = ACTIONS(298), + [anon_sym_LT] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(296), + [anon_sym_DASH_EQ] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_match] = ACTIONS(298), + [anon_sym_while] = ACTIONS(298), + [anon_sym_for] = ACTIONS(298), + [anon_sym_asyncfor] = ACTIONS(296), + [anon_sym_return] = ACTIONS(298), + [anon_sym_DASH_GT] = ACTIONS(296), + [anon_sym_assert] = ACTIONS(298), + [anon_sym_assert_equal] = ACTIONS(298), + [anon_sym_bash] = ACTIONS(298), + [anon_sym_download] = ACTIONS(298), + [anon_sym_either_or] = ACTIONS(298), + [anon_sym_fish] = ACTIONS(298), + [anon_sym_from_json] = ACTIONS(298), + [anon_sym_is_none] = ACTIONS(298), + [anon_sym_is_some] = ACTIONS(298), + [anon_sym_length] = ACTIONS(298), + [anon_sym_metadata] = ACTIONS(298), + [anon_sym_output] = ACTIONS(298), + [anon_sym_output_error] = ACTIONS(298), + [anon_sym_random] = ACTIONS(298), + [anon_sym_random_boolean] = ACTIONS(298), + [anon_sym_random_float] = ACTIONS(298), + [anon_sym_random_integer] = ACTIONS(298), + [anon_sym_read] = ACTIONS(298), + [anon_sym_to_json] = ACTIONS(298), + [anon_sym_write] = ACTIONS(298), + }, + [73] = { + [ts_builtin_sym_end] = ACTIONS(300), + [sym__identifier_pattern] = ACTIONS(302), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(300), + [anon_sym_async] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(300), + [anon_sym_RBRACE] = ACTIONS(300), + [sym_integer] = ACTIONS(302), + [sym_float] = ACTIONS(300), + [sym_string] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_EQ] = ACTIONS(302), + [anon_sym_none] = ACTIONS(302), + [anon_sym_some] = ACTIONS(302), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_DOT_DOT] = ACTIONS(300), + [anon_sym_PLUS] = ACTIONS(302), + [anon_sym_DASH] = ACTIONS(302), + [anon_sym_STAR] = ACTIONS(300), + [anon_sym_SLASH] = ACTIONS(300), + [anon_sym_PERCENT] = ACTIONS(300), + [anon_sym_EQ_EQ] = ACTIONS(300), + [anon_sym_BANG_EQ] = ACTIONS(300), + [anon_sym_AMP_AMP] = ACTIONS(300), + [anon_sym_PIPE_PIPE] = ACTIONS(300), + [anon_sym_GT] = ACTIONS(302), + [anon_sym_LT] = ACTIONS(302), + [anon_sym_GT_EQ] = ACTIONS(300), + [anon_sym_LT_EQ] = ACTIONS(300), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_match] = ACTIONS(302), + [anon_sym_while] = ACTIONS(302), + [anon_sym_for] = ACTIONS(302), + [anon_sym_asyncfor] = ACTIONS(300), + [anon_sym_return] = ACTIONS(302), + [anon_sym_DASH_GT] = ACTIONS(300), + [anon_sym_assert] = ACTIONS(302), + [anon_sym_assert_equal] = ACTIONS(302), + [anon_sym_bash] = ACTIONS(302), + [anon_sym_download] = ACTIONS(302), + [anon_sym_either_or] = ACTIONS(302), + [anon_sym_fish] = ACTIONS(302), + [anon_sym_from_json] = ACTIONS(302), + [anon_sym_is_none] = ACTIONS(302), + [anon_sym_is_some] = ACTIONS(302), + [anon_sym_length] = ACTIONS(302), + [anon_sym_metadata] = ACTIONS(302), + [anon_sym_output] = ACTIONS(302), + [anon_sym_output_error] = ACTIONS(302), + [anon_sym_random] = ACTIONS(302), + [anon_sym_random_boolean] = ACTIONS(302), + [anon_sym_random_float] = ACTIONS(302), + [anon_sym_random_integer] = ACTIONS(302), + [anon_sym_read] = ACTIONS(302), + [anon_sym_to_json] = ACTIONS(302), + [anon_sym_write] = ACTIONS(302), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(284), + [sym__identifier_pattern] = ACTIONS(286), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(214), + [anon_sym_async] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(284), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(284), + [sym_string] = ACTIONS(284), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(284), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_none] = ACTIONS(286), + [anon_sym_some] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_if] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_asyncfor] = ACTIONS(284), + [anon_sym_return] = ACTIONS(286), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_assert] = ACTIONS(286), + [anon_sym_assert_equal] = ACTIONS(286), + [anon_sym_bash] = ACTIONS(286), + [anon_sym_download] = ACTIONS(286), + [anon_sym_either_or] = ACTIONS(286), + [anon_sym_fish] = ACTIONS(286), + [anon_sym_from_json] = ACTIONS(286), + [anon_sym_is_none] = ACTIONS(286), + [anon_sym_is_some] = ACTIONS(286), + [anon_sym_length] = ACTIONS(286), + [anon_sym_metadata] = ACTIONS(286), + [anon_sym_output] = ACTIONS(286), + [anon_sym_output_error] = ACTIONS(286), + [anon_sym_random] = ACTIONS(286), + [anon_sym_random_boolean] = ACTIONS(286), + [anon_sym_random_float] = ACTIONS(286), + [anon_sym_random_integer] = ACTIONS(286), + [anon_sym_read] = ACTIONS(286), + [anon_sym_to_json] = ACTIONS(286), + [anon_sym_write] = ACTIONS(286), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(304), + [sym__identifier_pattern] = ACTIONS(306), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(304), + [anon_sym_async] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [sym_string] = ACTIONS(304), + [anon_sym_true] = ACTIONS(306), + [anon_sym_false] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(304), + [anon_sym_EQ] = ACTIONS(306), + [anon_sym_none] = ACTIONS(306), + [anon_sym_some] = ACTIONS(306), + [anon_sym_COLON] = ACTIONS(304), + [anon_sym_DOT_DOT] = ACTIONS(304), + [anon_sym_PLUS] = ACTIONS(306), + [anon_sym_DASH] = ACTIONS(306), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(304), + [anon_sym_PERCENT] = ACTIONS(304), + [anon_sym_EQ_EQ] = ACTIONS(304), + [anon_sym_BANG_EQ] = ACTIONS(304), + [anon_sym_AMP_AMP] = ACTIONS(304), + [anon_sym_PIPE_PIPE] = ACTIONS(304), + [anon_sym_GT] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(306), + [anon_sym_GT_EQ] = ACTIONS(304), + [anon_sym_LT_EQ] = ACTIONS(304), + [anon_sym_PLUS_EQ] = ACTIONS(304), + [anon_sym_DASH_EQ] = ACTIONS(304), + [anon_sym_if] = ACTIONS(306), + [anon_sym_match] = ACTIONS(306), + [anon_sym_while] = ACTIONS(306), + [anon_sym_for] = ACTIONS(306), + [anon_sym_asyncfor] = ACTIONS(304), + [anon_sym_return] = ACTIONS(306), + [anon_sym_DASH_GT] = ACTIONS(304), + [anon_sym_assert] = ACTIONS(306), + [anon_sym_assert_equal] = ACTIONS(306), + [anon_sym_bash] = ACTIONS(306), + [anon_sym_download] = ACTIONS(306), + [anon_sym_either_or] = ACTIONS(306), + [anon_sym_fish] = ACTIONS(306), + [anon_sym_from_json] = ACTIONS(306), + [anon_sym_is_none] = ACTIONS(306), + [anon_sym_is_some] = ACTIONS(306), + [anon_sym_length] = ACTIONS(306), + [anon_sym_metadata] = ACTIONS(306), + [anon_sym_output] = ACTIONS(306), + [anon_sym_output_error] = ACTIONS(306), + [anon_sym_random] = ACTIONS(306), + [anon_sym_random_boolean] = ACTIONS(306), + [anon_sym_random_float] = ACTIONS(306), + [anon_sym_random_integer] = ACTIONS(306), + [anon_sym_read] = ACTIONS(306), + [anon_sym_to_json] = ACTIONS(306), + [anon_sym_write] = ACTIONS(306), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(308), + [sym__identifier_pattern] = ACTIONS(310), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(308), + [anon_sym_async] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(308), + [anon_sym_RBRACE] = ACTIONS(308), + [sym_integer] = ACTIONS(310), + [sym_float] = ACTIONS(308), + [sym_string] = ACTIONS(308), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_none] = ACTIONS(310), + [anon_sym_some] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(308), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(308), + [anon_sym_PERCENT] = ACTIONS(308), + [anon_sym_EQ_EQ] = ACTIONS(308), + [anon_sym_BANG_EQ] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(308), + [anon_sym_PIPE_PIPE] = ACTIONS(308), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(308), + [anon_sym_LT_EQ] = ACTIONS(308), + [anon_sym_PLUS_EQ] = ACTIONS(308), + [anon_sym_DASH_EQ] = ACTIONS(308), + [anon_sym_if] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_asyncfor] = ACTIONS(308), + [anon_sym_return] = ACTIONS(310), + [anon_sym_DASH_GT] = ACTIONS(308), + [anon_sym_assert] = ACTIONS(310), + [anon_sym_assert_equal] = ACTIONS(310), + [anon_sym_bash] = ACTIONS(310), + [anon_sym_download] = ACTIONS(310), + [anon_sym_either_or] = ACTIONS(310), + [anon_sym_fish] = ACTIONS(310), + [anon_sym_from_json] = ACTIONS(310), + [anon_sym_is_none] = ACTIONS(310), + [anon_sym_is_some] = ACTIONS(310), + [anon_sym_length] = ACTIONS(310), + [anon_sym_metadata] = ACTIONS(310), + [anon_sym_output] = ACTIONS(310), + [anon_sym_output_error] = ACTIONS(310), + [anon_sym_random] = ACTIONS(310), + [anon_sym_random_boolean] = ACTIONS(310), + [anon_sym_random_float] = ACTIONS(310), + [anon_sym_random_integer] = ACTIONS(310), + [anon_sym_read] = ACTIONS(310), + [anon_sym_to_json] = ACTIONS(310), + [anon_sym_write] = ACTIONS(310), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(210), + [sym__identifier_pattern] = ACTIONS(212), + [sym__comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(214), [anon_sym_async] = ACTIONS(212), [anon_sym_LBRACE] = ACTIONS(210), [anon_sym_RBRACE] = ACTIONS(210), @@ -6113,7 +7985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(212), [anon_sym_for] = ACTIONS(212), [anon_sym_asyncfor] = ACTIONS(210), - [anon_sym_in] = ACTIONS(212), [anon_sym_return] = ACTIONS(212), [anon_sym_DASH_GT] = ACTIONS(210), [anon_sym_assert] = ACTIONS(212), @@ -6137,1837 +8008,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(212), [anon_sym_write] = ACTIONS(212), }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(214), - [sym__identifier_pattern] = ACTIONS(216), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(214), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_async] = ACTIONS(216), - [anon_sym_LBRACE] = ACTIONS(214), - [anon_sym_RBRACE] = ACTIONS(214), - [sym_integer] = ACTIONS(216), - [sym_float] = ACTIONS(214), - [sym_string] = ACTIONS(214), - [anon_sym_true] = ACTIONS(216), - [anon_sym_false] = ACTIONS(216), - [anon_sym_LBRACK] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(216), - [anon_sym_none] = ACTIONS(216), - [anon_sym_some] = ACTIONS(216), - [anon_sym_COLON] = ACTIONS(214), - [anon_sym_DOT_DOT] = ACTIONS(214), - [anon_sym_PLUS] = ACTIONS(216), - [anon_sym_DASH] = ACTIONS(216), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(214), - [anon_sym_EQ_EQ] = ACTIONS(214), - [anon_sym_BANG_EQ] = ACTIONS(214), - [anon_sym_AMP_AMP] = ACTIONS(214), - [anon_sym_PIPE_PIPE] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(216), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_GT_EQ] = ACTIONS(214), - [anon_sym_LT_EQ] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(214), - [anon_sym_DASH_EQ] = ACTIONS(214), - [anon_sym_if] = ACTIONS(216), - [anon_sym_match] = ACTIONS(216), - [anon_sym_while] = ACTIONS(216), - [anon_sym_for] = ACTIONS(216), - [anon_sym_asyncfor] = ACTIONS(214), - [anon_sym_in] = ACTIONS(216), - [anon_sym_return] = ACTIONS(216), - [anon_sym_DASH_GT] = ACTIONS(214), - [anon_sym_assert] = ACTIONS(216), - [anon_sym_assert_equal] = ACTIONS(216), - [anon_sym_bash] = ACTIONS(216), - [anon_sym_download] = ACTIONS(216), - [anon_sym_either_or] = ACTIONS(216), - [anon_sym_fish] = ACTIONS(216), - [anon_sym_from_json] = ACTIONS(216), - [anon_sym_is_none] = ACTIONS(216), - [anon_sym_is_some] = ACTIONS(216), - [anon_sym_length] = ACTIONS(216), - [anon_sym_metadata] = ACTIONS(216), - [anon_sym_output] = ACTIONS(216), - [anon_sym_output_error] = ACTIONS(216), - [anon_sym_random] = ACTIONS(216), - [anon_sym_random_boolean] = ACTIONS(216), - [anon_sym_random_float] = ACTIONS(216), - [anon_sym_random_integer] = ACTIONS(216), - [anon_sym_read] = ACTIONS(216), - [anon_sym_to_json] = ACTIONS(216), - [anon_sym_write] = ACTIONS(216), - }, - [51] = { - [sym_math_operator] = STATE(219), - [sym_logic_operator] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(206), - [sym__identifier_pattern] = ACTIONS(208), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(206), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_async] = ACTIONS(208), - [anon_sym_LBRACE] = ACTIONS(206), - [anon_sym_RBRACE] = ACTIONS(206), - [sym_integer] = ACTIONS(208), - [sym_float] = ACTIONS(206), - [sym_string] = ACTIONS(206), - [anon_sym_true] = ACTIONS(208), - [anon_sym_false] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(208), - [anon_sym_none] = ACTIONS(208), - [anon_sym_some] = ACTIONS(208), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_PERCENT] = ACTIONS(206), - [anon_sym_EQ_EQ] = ACTIONS(206), - [anon_sym_BANG_EQ] = ACTIONS(206), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(206), - [anon_sym_LT_EQ] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(206), - [anon_sym_DASH_EQ] = ACTIONS(206), - [anon_sym_if] = ACTIONS(208), - [anon_sym_match] = ACTIONS(208), - [anon_sym_while] = ACTIONS(208), - [anon_sym_for] = ACTIONS(208), - [anon_sym_asyncfor] = ACTIONS(206), - [anon_sym_return] = ACTIONS(208), - [anon_sym_DASH_GT] = ACTIONS(220), - [anon_sym_assert] = ACTIONS(208), - [anon_sym_assert_equal] = ACTIONS(208), - [anon_sym_bash] = ACTIONS(208), - [anon_sym_download] = ACTIONS(208), - [anon_sym_either_or] = ACTIONS(208), - [anon_sym_fish] = ACTIONS(208), - [anon_sym_from_json] = ACTIONS(208), - [anon_sym_is_none] = ACTIONS(208), - [anon_sym_is_some] = ACTIONS(208), - [anon_sym_length] = ACTIONS(208), - [anon_sym_metadata] = ACTIONS(208), - [anon_sym_output] = ACTIONS(208), - [anon_sym_output_error] = ACTIONS(208), - [anon_sym_random] = ACTIONS(208), - [anon_sym_random_boolean] = ACTIONS(208), - [anon_sym_random_float] = ACTIONS(208), - [anon_sym_random_integer] = ACTIONS(208), - [anon_sym_read] = ACTIONS(208), - [anon_sym_to_json] = ACTIONS(208), - [anon_sym_write] = ACTIONS(208), - }, - [52] = { - [sym_math_operator] = STATE(219), - [sym_logic_operator] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(194), - [sym__identifier_pattern] = ACTIONS(196), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(194), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_async] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(194), - [anon_sym_RBRACE] = ACTIONS(194), - [sym_integer] = ACTIONS(196), - [sym_float] = ACTIONS(194), - [sym_string] = ACTIONS(194), - [anon_sym_true] = ACTIONS(196), - [anon_sym_false] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(196), - [anon_sym_none] = ACTIONS(196), - [anon_sym_some] = ACTIONS(196), - [anon_sym_COLON] = ACTIONS(194), - [anon_sym_PLUS] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_PERCENT] = ACTIONS(194), - [anon_sym_EQ_EQ] = ACTIONS(194), - [anon_sym_BANG_EQ] = ACTIONS(194), - [anon_sym_AMP_AMP] = ACTIONS(194), - [anon_sym_PIPE_PIPE] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(194), - [anon_sym_LT_EQ] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(194), - [anon_sym_DASH_EQ] = ACTIONS(194), - [anon_sym_if] = ACTIONS(196), - [anon_sym_match] = ACTIONS(196), - [anon_sym_while] = ACTIONS(196), - [anon_sym_for] = ACTIONS(196), - [anon_sym_asyncfor] = ACTIONS(194), - [anon_sym_return] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(194), - [anon_sym_assert] = ACTIONS(196), - [anon_sym_assert_equal] = ACTIONS(196), - [anon_sym_bash] = ACTIONS(196), - [anon_sym_download] = ACTIONS(196), - [anon_sym_either_or] = ACTIONS(196), - [anon_sym_fish] = ACTIONS(196), - [anon_sym_from_json] = ACTIONS(196), - [anon_sym_is_none] = ACTIONS(196), - [anon_sym_is_some] = ACTIONS(196), - [anon_sym_length] = ACTIONS(196), - [anon_sym_metadata] = ACTIONS(196), - [anon_sym_output] = ACTIONS(196), - [anon_sym_output_error] = ACTIONS(196), - [anon_sym_random] = ACTIONS(196), - [anon_sym_random_boolean] = ACTIONS(196), - [anon_sym_random_float] = ACTIONS(196), - [anon_sym_random_integer] = ACTIONS(196), - [anon_sym_read] = ACTIONS(196), - [anon_sym_to_json] = ACTIONS(196), - [anon_sym_write] = ACTIONS(196), - }, - [53] = { - [sym_assignment_operator] = STATE(32), - [sym_type_definition] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(222), - [sym__identifier_pattern] = ACTIONS(224), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(222), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(222), - [anon_sym_RBRACE] = ACTIONS(222), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(222), - [sym_string] = ACTIONS(222), - [anon_sym_true] = ACTIONS(224), - [anon_sym_false] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_none] = ACTIONS(224), - [anon_sym_some] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_SLASH] = ACTIONS(222), - [anon_sym_PERCENT] = ACTIONS(222), - [anon_sym_EQ_EQ] = ACTIONS(222), - [anon_sym_BANG_EQ] = ACTIONS(222), - [anon_sym_AMP_AMP] = ACTIONS(222), - [anon_sym_PIPE_PIPE] = ACTIONS(222), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(222), - [anon_sym_LT_EQ] = ACTIONS(222), - [anon_sym_PLUS_EQ] = ACTIONS(232), - [anon_sym_DASH_EQ] = ACTIONS(232), - [anon_sym_if] = ACTIONS(224), - [anon_sym_match] = ACTIONS(224), - [anon_sym_while] = ACTIONS(224), - [anon_sym_for] = ACTIONS(224), - [anon_sym_asyncfor] = ACTIONS(222), - [anon_sym_return] = ACTIONS(224), - [anon_sym_DASH_GT] = ACTIONS(222), - [anon_sym_assert] = ACTIONS(224), - [anon_sym_assert_equal] = ACTIONS(224), - [anon_sym_bash] = ACTIONS(224), - [anon_sym_download] = ACTIONS(224), - [anon_sym_either_or] = ACTIONS(224), - [anon_sym_fish] = ACTIONS(224), - [anon_sym_from_json] = ACTIONS(224), - [anon_sym_is_none] = ACTIONS(224), - [anon_sym_is_some] = ACTIONS(224), - [anon_sym_length] = ACTIONS(224), - [anon_sym_metadata] = ACTIONS(224), - [anon_sym_output] = ACTIONS(224), - [anon_sym_output_error] = ACTIONS(224), - [anon_sym_random] = ACTIONS(224), - [anon_sym_random_boolean] = ACTIONS(224), - [anon_sym_random_float] = ACTIONS(224), - [anon_sym_random_integer] = ACTIONS(224), - [anon_sym_read] = ACTIONS(224), - [anon_sym_to_json] = ACTIONS(224), - [anon_sym_write] = ACTIONS(224), - }, - [54] = { - [sym_math_operator] = STATE(219), - [sym_logic_operator] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(198), - [sym__identifier_pattern] = ACTIONS(200), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_async] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(198), - [sym_integer] = ACTIONS(200), - [sym_float] = ACTIONS(198), - [sym_string] = ACTIONS(198), - [anon_sym_true] = ACTIONS(200), - [anon_sym_false] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(200), - [anon_sym_none] = ACTIONS(200), - [anon_sym_some] = ACTIONS(200), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(200), - [anon_sym_DASH] = ACTIONS(200), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_EQ_EQ] = ACTIONS(198), - [anon_sym_BANG_EQ] = ACTIONS(198), - [anon_sym_AMP_AMP] = ACTIONS(198), - [anon_sym_PIPE_PIPE] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(200), - [anon_sym_LT] = ACTIONS(200), - [anon_sym_GT_EQ] = ACTIONS(198), - [anon_sym_LT_EQ] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(198), - [anon_sym_DASH_EQ] = ACTIONS(198), - [anon_sym_if] = ACTIONS(200), - [anon_sym_match] = ACTIONS(200), - [anon_sym_while] = ACTIONS(200), - [anon_sym_for] = ACTIONS(200), - [anon_sym_asyncfor] = ACTIONS(198), - [anon_sym_return] = ACTIONS(200), - [anon_sym_DASH_GT] = ACTIONS(220), - [anon_sym_assert] = ACTIONS(200), - [anon_sym_assert_equal] = ACTIONS(200), - [anon_sym_bash] = ACTIONS(200), - [anon_sym_download] = ACTIONS(200), - [anon_sym_either_or] = ACTIONS(200), - [anon_sym_fish] = ACTIONS(200), - [anon_sym_from_json] = ACTIONS(200), - [anon_sym_is_none] = ACTIONS(200), - [anon_sym_is_some] = ACTIONS(200), - [anon_sym_length] = ACTIONS(200), - [anon_sym_metadata] = ACTIONS(200), - [anon_sym_output] = ACTIONS(200), - [anon_sym_output_error] = ACTIONS(200), - [anon_sym_random] = ACTIONS(200), - [anon_sym_random_boolean] = ACTIONS(200), - [anon_sym_random_float] = ACTIONS(200), - [anon_sym_random_integer] = ACTIONS(200), - [anon_sym_read] = ACTIONS(200), - [anon_sym_to_json] = ACTIONS(200), - [anon_sym_write] = ACTIONS(200), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(234), - [sym__identifier_pattern] = ACTIONS(236), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(234), - [anon_sym_LPAREN] = ACTIONS(234), - [anon_sym_async] = ACTIONS(236), - [anon_sym_LBRACE] = ACTIONS(234), - [anon_sym_RBRACE] = ACTIONS(234), - [sym_integer] = ACTIONS(236), - [sym_float] = ACTIONS(234), - [sym_string] = ACTIONS(234), - [anon_sym_true] = ACTIONS(236), - [anon_sym_false] = ACTIONS(236), - [anon_sym_LBRACK] = ACTIONS(234), - [anon_sym_EQ] = ACTIONS(236), - [anon_sym_none] = ACTIONS(236), - [anon_sym_some] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(234), - [anon_sym_PLUS] = ACTIONS(236), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(234), - [anon_sym_SLASH] = ACTIONS(234), - [anon_sym_PERCENT] = ACTIONS(234), - [anon_sym_EQ_EQ] = ACTIONS(234), - [anon_sym_BANG_EQ] = ACTIONS(234), - [anon_sym_AMP_AMP] = ACTIONS(234), - [anon_sym_PIPE_PIPE] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(234), - [anon_sym_LT_EQ] = ACTIONS(234), - [anon_sym_PLUS_EQ] = ACTIONS(234), - [anon_sym_DASH_EQ] = ACTIONS(234), - [anon_sym_if] = ACTIONS(236), - [anon_sym_match] = ACTIONS(236), - [anon_sym_while] = ACTIONS(236), - [anon_sym_for] = ACTIONS(236), - [anon_sym_asyncfor] = ACTIONS(234), - [anon_sym_return] = ACTIONS(236), - [anon_sym_DASH_GT] = ACTIONS(234), - [anon_sym_assert] = ACTIONS(236), - [anon_sym_assert_equal] = ACTIONS(236), - [anon_sym_bash] = ACTIONS(236), - [anon_sym_download] = ACTIONS(236), - [anon_sym_either_or] = ACTIONS(236), - [anon_sym_fish] = ACTIONS(236), - [anon_sym_from_json] = ACTIONS(236), - [anon_sym_is_none] = ACTIONS(236), - [anon_sym_is_some] = ACTIONS(236), - [anon_sym_length] = ACTIONS(236), - [anon_sym_metadata] = ACTIONS(236), - [anon_sym_output] = ACTIONS(236), - [anon_sym_output_error] = ACTIONS(236), - [anon_sym_random] = ACTIONS(236), - [anon_sym_random_boolean] = ACTIONS(236), - [anon_sym_random_float] = ACTIONS(236), - [anon_sym_random_integer] = ACTIONS(236), - [anon_sym_read] = ACTIONS(236), - [anon_sym_to_json] = ACTIONS(236), - [anon_sym_write] = ACTIONS(236), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(238), - [sym__identifier_pattern] = ACTIONS(240), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(238), - [anon_sym_async] = ACTIONS(240), - [anon_sym_LBRACE] = ACTIONS(238), - [anon_sym_RBRACE] = ACTIONS(238), - [sym_integer] = ACTIONS(240), - [sym_float] = ACTIONS(238), - [sym_string] = ACTIONS(238), - [anon_sym_true] = ACTIONS(240), - [anon_sym_false] = ACTIONS(240), - [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_EQ] = ACTIONS(240), - [anon_sym_none] = ACTIONS(240), - [anon_sym_some] = ACTIONS(240), - [anon_sym_COLON] = ACTIONS(238), - [anon_sym_DOT_DOT] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(240), - [anon_sym_DASH] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PERCENT] = ACTIONS(238), - [anon_sym_EQ_EQ] = ACTIONS(238), - [anon_sym_BANG_EQ] = ACTIONS(238), - [anon_sym_AMP_AMP] = ACTIONS(238), - [anon_sym_PIPE_PIPE] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(240), - [anon_sym_GT_EQ] = ACTIONS(238), - [anon_sym_LT_EQ] = ACTIONS(238), - [anon_sym_PLUS_EQ] = ACTIONS(238), - [anon_sym_DASH_EQ] = ACTIONS(238), - [anon_sym_if] = ACTIONS(240), - [anon_sym_match] = ACTIONS(240), - [anon_sym_while] = ACTIONS(240), - [anon_sym_for] = ACTIONS(240), - [anon_sym_asyncfor] = ACTIONS(238), - [anon_sym_return] = ACTIONS(240), - [anon_sym_DASH_GT] = ACTIONS(238), - [anon_sym_assert] = ACTIONS(240), - [anon_sym_assert_equal] = ACTIONS(240), - [anon_sym_bash] = ACTIONS(240), - [anon_sym_download] = ACTIONS(240), - [anon_sym_either_or] = ACTIONS(240), - [anon_sym_fish] = ACTIONS(240), - [anon_sym_from_json] = ACTIONS(240), - [anon_sym_is_none] = ACTIONS(240), - [anon_sym_is_some] = ACTIONS(240), - [anon_sym_length] = ACTIONS(240), - [anon_sym_metadata] = ACTIONS(240), - [anon_sym_output] = ACTIONS(240), - [anon_sym_output_error] = ACTIONS(240), - [anon_sym_random] = ACTIONS(240), - [anon_sym_random_boolean] = ACTIONS(240), - [anon_sym_random_float] = ACTIONS(240), - [anon_sym_random_integer] = ACTIONS(240), - [anon_sym_read] = ACTIONS(240), - [anon_sym_to_json] = ACTIONS(240), - [anon_sym_write] = ACTIONS(240), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(242), - [sym__identifier_pattern] = ACTIONS(244), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(242), - [anon_sym_async] = ACTIONS(244), - [anon_sym_LBRACE] = ACTIONS(242), - [anon_sym_RBRACE] = ACTIONS(242), - [sym_integer] = ACTIONS(244), - [sym_float] = ACTIONS(242), - [sym_string] = ACTIONS(242), - [anon_sym_true] = ACTIONS(244), - [anon_sym_false] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(242), - [anon_sym_EQ] = ACTIONS(244), - [anon_sym_none] = ACTIONS(244), - [anon_sym_some] = ACTIONS(244), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_DOT_DOT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_STAR] = ACTIONS(242), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PERCENT] = ACTIONS(242), - [anon_sym_EQ_EQ] = ACTIONS(242), - [anon_sym_BANG_EQ] = ACTIONS(242), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(244), - [anon_sym_GT_EQ] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(242), - [anon_sym_PLUS_EQ] = ACTIONS(242), - [anon_sym_DASH_EQ] = ACTIONS(242), - [anon_sym_if] = ACTIONS(244), - [anon_sym_match] = ACTIONS(244), - [anon_sym_while] = ACTIONS(244), - [anon_sym_for] = ACTIONS(244), - [anon_sym_asyncfor] = ACTIONS(242), - [anon_sym_return] = ACTIONS(244), - [anon_sym_DASH_GT] = ACTIONS(242), - [anon_sym_assert] = ACTIONS(244), - [anon_sym_assert_equal] = ACTIONS(244), - [anon_sym_bash] = ACTIONS(244), - [anon_sym_download] = ACTIONS(244), - [anon_sym_either_or] = ACTIONS(244), - [anon_sym_fish] = ACTIONS(244), - [anon_sym_from_json] = ACTIONS(244), - [anon_sym_is_none] = ACTIONS(244), - [anon_sym_is_some] = ACTIONS(244), - [anon_sym_length] = ACTIONS(244), - [anon_sym_metadata] = ACTIONS(244), - [anon_sym_output] = ACTIONS(244), - [anon_sym_output_error] = ACTIONS(244), - [anon_sym_random] = ACTIONS(244), - [anon_sym_random_boolean] = ACTIONS(244), - [anon_sym_random_float] = ACTIONS(244), - [anon_sym_random_integer] = ACTIONS(244), - [anon_sym_read] = ACTIONS(244), - [anon_sym_to_json] = ACTIONS(244), - [anon_sym_write] = ACTIONS(244), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(246), - [sym__identifier_pattern] = ACTIONS(248), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(246), - [anon_sym_async] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(246), - [anon_sym_RBRACE] = ACTIONS(246), - [sym_integer] = ACTIONS(248), - [sym_float] = ACTIONS(246), - [sym_string] = ACTIONS(246), - [anon_sym_true] = ACTIONS(248), - [anon_sym_false] = ACTIONS(248), - [anon_sym_LBRACK] = ACTIONS(246), - [anon_sym_EQ] = ACTIONS(248), - [anon_sym_none] = ACTIONS(248), - [anon_sym_some] = ACTIONS(248), - [anon_sym_COLON] = ACTIONS(246), - [anon_sym_DOT_DOT] = ACTIONS(246), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_STAR] = ACTIONS(246), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_PERCENT] = ACTIONS(246), - [anon_sym_EQ_EQ] = ACTIONS(246), - [anon_sym_BANG_EQ] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT_EQ] = ACTIONS(246), - [anon_sym_LT_EQ] = ACTIONS(246), - [anon_sym_PLUS_EQ] = ACTIONS(246), - [anon_sym_DASH_EQ] = ACTIONS(246), - [anon_sym_if] = ACTIONS(248), - [anon_sym_match] = ACTIONS(248), - [anon_sym_while] = ACTIONS(248), - [anon_sym_for] = ACTIONS(248), - [anon_sym_asyncfor] = ACTIONS(246), - [anon_sym_return] = ACTIONS(248), - [anon_sym_DASH_GT] = ACTIONS(246), - [anon_sym_assert] = ACTIONS(248), - [anon_sym_assert_equal] = ACTIONS(248), - [anon_sym_bash] = ACTIONS(248), - [anon_sym_download] = ACTIONS(248), - [anon_sym_either_or] = ACTIONS(248), - [anon_sym_fish] = ACTIONS(248), - [anon_sym_from_json] = ACTIONS(248), - [anon_sym_is_none] = ACTIONS(248), - [anon_sym_is_some] = ACTIONS(248), - [anon_sym_length] = ACTIONS(248), - [anon_sym_metadata] = ACTIONS(248), - [anon_sym_output] = ACTIONS(248), - [anon_sym_output_error] = ACTIONS(248), - [anon_sym_random] = ACTIONS(248), - [anon_sym_random_boolean] = ACTIONS(248), - [anon_sym_random_float] = ACTIONS(248), - [anon_sym_random_integer] = ACTIONS(248), - [anon_sym_read] = ACTIONS(248), - [anon_sym_to_json] = ACTIONS(248), - [anon_sym_write] = ACTIONS(248), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(250), - [sym__identifier_pattern] = ACTIONS(252), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(250), - [anon_sym_async] = ACTIONS(252), - [anon_sym_LBRACE] = ACTIONS(250), - [anon_sym_RBRACE] = ACTIONS(250), - [sym_integer] = ACTIONS(252), - [sym_float] = ACTIONS(250), - [sym_string] = ACTIONS(250), - [anon_sym_true] = ACTIONS(252), - [anon_sym_false] = ACTIONS(252), - [anon_sym_LBRACK] = ACTIONS(250), - [anon_sym_EQ] = ACTIONS(252), - [anon_sym_none] = ACTIONS(252), - [anon_sym_some] = ACTIONS(252), - [anon_sym_COLON] = ACTIONS(250), - [anon_sym_DOT_DOT] = ACTIONS(250), - [anon_sym_PLUS] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(250), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_PERCENT] = ACTIONS(250), - [anon_sym_EQ_EQ] = ACTIONS(250), - [anon_sym_BANG_EQ] = ACTIONS(250), - [anon_sym_AMP_AMP] = ACTIONS(250), - [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(252), - [anon_sym_GT_EQ] = ACTIONS(250), - [anon_sym_LT_EQ] = ACTIONS(250), - [anon_sym_PLUS_EQ] = ACTIONS(250), - [anon_sym_DASH_EQ] = ACTIONS(250), - [anon_sym_if] = ACTIONS(252), - [anon_sym_match] = ACTIONS(252), - [anon_sym_while] = ACTIONS(252), - [anon_sym_for] = ACTIONS(252), - [anon_sym_asyncfor] = ACTIONS(250), - [anon_sym_return] = ACTIONS(252), - [anon_sym_DASH_GT] = ACTIONS(250), - [anon_sym_assert] = ACTIONS(252), - [anon_sym_assert_equal] = ACTIONS(252), - [anon_sym_bash] = ACTIONS(252), - [anon_sym_download] = ACTIONS(252), - [anon_sym_either_or] = ACTIONS(252), - [anon_sym_fish] = ACTIONS(252), - [anon_sym_from_json] = ACTIONS(252), - [anon_sym_is_none] = ACTIONS(252), - [anon_sym_is_some] = ACTIONS(252), - [anon_sym_length] = ACTIONS(252), - [anon_sym_metadata] = ACTIONS(252), - [anon_sym_output] = ACTIONS(252), - [anon_sym_output_error] = ACTIONS(252), - [anon_sym_random] = ACTIONS(252), - [anon_sym_random_boolean] = ACTIONS(252), - [anon_sym_random_float] = ACTIONS(252), - [anon_sym_random_integer] = ACTIONS(252), - [anon_sym_read] = ACTIONS(252), - [anon_sym_to_json] = ACTIONS(252), - [anon_sym_write] = ACTIONS(252), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(254), - [sym__identifier_pattern] = ACTIONS(256), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym_async] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(254), - [anon_sym_RBRACE] = ACTIONS(254), - [sym_integer] = ACTIONS(256), - [sym_float] = ACTIONS(254), - [sym_string] = ACTIONS(254), - [anon_sym_true] = ACTIONS(256), - [anon_sym_false] = ACTIONS(256), - [anon_sym_LBRACK] = ACTIONS(254), - [anon_sym_EQ] = ACTIONS(256), - [anon_sym_none] = ACTIONS(256), - [anon_sym_some] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(254), - [anon_sym_DOT_DOT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(254), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PERCENT] = ACTIONS(254), - [anon_sym_EQ_EQ] = ACTIONS(254), - [anon_sym_BANG_EQ] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT_EQ] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(254), - [anon_sym_PLUS_EQ] = ACTIONS(254), - [anon_sym_DASH_EQ] = ACTIONS(254), - [anon_sym_if] = ACTIONS(256), - [anon_sym_match] = ACTIONS(256), - [anon_sym_while] = ACTIONS(256), - [anon_sym_for] = ACTIONS(256), - [anon_sym_asyncfor] = ACTIONS(254), - [anon_sym_return] = ACTIONS(256), - [anon_sym_DASH_GT] = ACTIONS(254), - [anon_sym_assert] = ACTIONS(256), - [anon_sym_assert_equal] = ACTIONS(256), - [anon_sym_bash] = ACTIONS(256), - [anon_sym_download] = ACTIONS(256), - [anon_sym_either_or] = ACTIONS(256), - [anon_sym_fish] = ACTIONS(256), - [anon_sym_from_json] = ACTIONS(256), - [anon_sym_is_none] = ACTIONS(256), - [anon_sym_is_some] = ACTIONS(256), - [anon_sym_length] = ACTIONS(256), - [anon_sym_metadata] = ACTIONS(256), - [anon_sym_output] = ACTIONS(256), - [anon_sym_output_error] = ACTIONS(256), - [anon_sym_random] = ACTIONS(256), - [anon_sym_random_boolean] = ACTIONS(256), - [anon_sym_random_float] = ACTIONS(256), - [anon_sym_random_integer] = ACTIONS(256), - [anon_sym_read] = ACTIONS(256), - [anon_sym_to_json] = ACTIONS(256), - [anon_sym_write] = ACTIONS(256), - }, - [61] = { - [sym_assignment_operator] = STATE(32), - [sym_type_definition] = STATE(341), - [sym__identifier_pattern] = ACTIONS(224), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(222), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(222), - [anon_sym_RBRACE] = ACTIONS(222), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(222), - [sym_string] = ACTIONS(222), - [anon_sym_true] = ACTIONS(224), - [anon_sym_false] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(258), - [anon_sym_none] = ACTIONS(224), - [anon_sym_some] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_SLASH] = ACTIONS(222), - [anon_sym_PERCENT] = ACTIONS(222), - [anon_sym_EQ_EQ] = ACTIONS(222), - [anon_sym_BANG_EQ] = ACTIONS(222), - [anon_sym_AMP_AMP] = ACTIONS(222), - [anon_sym_PIPE_PIPE] = ACTIONS(222), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(230), - [anon_sym_GT_EQ] = ACTIONS(222), - [anon_sym_LT_EQ] = ACTIONS(222), - [anon_sym_PLUS_EQ] = ACTIONS(232), - [anon_sym_DASH_EQ] = ACTIONS(232), - [anon_sym_if] = ACTIONS(224), - [anon_sym_match] = ACTIONS(224), - [anon_sym_while] = ACTIONS(224), - [anon_sym_for] = ACTIONS(224), - [anon_sym_asyncfor] = ACTIONS(222), - [anon_sym_return] = ACTIONS(224), - [anon_sym_DASH_GT] = ACTIONS(222), - [anon_sym_assert] = ACTIONS(224), - [anon_sym_assert_equal] = ACTIONS(224), - [anon_sym_bash] = ACTIONS(224), - [anon_sym_download] = ACTIONS(224), - [anon_sym_either_or] = ACTIONS(224), - [anon_sym_fish] = ACTIONS(224), - [anon_sym_from_json] = ACTIONS(224), - [anon_sym_is_none] = ACTIONS(224), - [anon_sym_is_some] = ACTIONS(224), - [anon_sym_length] = ACTIONS(224), - [anon_sym_metadata] = ACTIONS(224), - [anon_sym_output] = ACTIONS(224), - [anon_sym_output_error] = ACTIONS(224), - [anon_sym_random] = ACTIONS(224), - [anon_sym_random_boolean] = ACTIONS(224), - [anon_sym_random_float] = ACTIONS(224), - [anon_sym_random_integer] = ACTIONS(224), - [anon_sym_read] = ACTIONS(224), - [anon_sym_to_json] = ACTIONS(224), - [anon_sym_write] = ACTIONS(224), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(226), - [sym__identifier_pattern] = ACTIONS(260), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [sym_integer] = ACTIONS(260), - [sym_float] = ACTIONS(226), - [sym_string] = ACTIONS(226), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(226), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_none] = ACTIONS(260), - [anon_sym_some] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_DOT_DOT] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(226), - [anon_sym_SLASH] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(226), - [anon_sym_EQ_EQ] = ACTIONS(226), - [anon_sym_BANG_EQ] = ACTIONS(226), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_GT_EQ] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(226), - [anon_sym_DASH_EQ] = ACTIONS(226), - [anon_sym_if] = ACTIONS(260), - [anon_sym_match] = ACTIONS(260), - [anon_sym_while] = ACTIONS(260), - [anon_sym_for] = ACTIONS(260), - [anon_sym_asyncfor] = ACTIONS(226), - [anon_sym_return] = ACTIONS(260), - [anon_sym_DASH_GT] = ACTIONS(226), - [anon_sym_assert] = ACTIONS(260), - [anon_sym_assert_equal] = ACTIONS(260), - [anon_sym_bash] = ACTIONS(260), - [anon_sym_download] = ACTIONS(260), - [anon_sym_either_or] = ACTIONS(260), - [anon_sym_fish] = ACTIONS(260), - [anon_sym_from_json] = ACTIONS(260), - [anon_sym_is_none] = ACTIONS(260), - [anon_sym_is_some] = ACTIONS(260), - [anon_sym_length] = ACTIONS(260), - [anon_sym_metadata] = ACTIONS(260), - [anon_sym_output] = ACTIONS(260), - [anon_sym_output_error] = ACTIONS(260), - [anon_sym_random] = ACTIONS(260), - [anon_sym_random_boolean] = ACTIONS(260), - [anon_sym_random_float] = ACTIONS(260), - [anon_sym_random_integer] = ACTIONS(260), - [anon_sym_read] = ACTIONS(260), - [anon_sym_to_json] = ACTIONS(260), - [anon_sym_write] = ACTIONS(260), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(262), - [sym__identifier_pattern] = ACTIONS(264), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_async] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(262), - [anon_sym_RBRACE] = ACTIONS(262), - [sym_integer] = ACTIONS(264), - [sym_float] = ACTIONS(262), - [sym_string] = ACTIONS(262), - [anon_sym_true] = ACTIONS(264), - [anon_sym_false] = ACTIONS(264), - [anon_sym_LBRACK] = ACTIONS(262), - [anon_sym_EQ] = ACTIONS(264), - [anon_sym_none] = ACTIONS(264), - [anon_sym_some] = ACTIONS(264), - [anon_sym_COLON] = ACTIONS(262), - [anon_sym_DOT_DOT] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(262), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PERCENT] = ACTIONS(262), - [anon_sym_EQ_EQ] = ACTIONS(262), - [anon_sym_BANG_EQ] = ACTIONS(262), - [anon_sym_AMP_AMP] = ACTIONS(262), - [anon_sym_PIPE_PIPE] = ACTIONS(262), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT_EQ] = ACTIONS(262), - [anon_sym_LT_EQ] = ACTIONS(262), - [anon_sym_PLUS_EQ] = ACTIONS(262), - [anon_sym_DASH_EQ] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_match] = ACTIONS(264), - [anon_sym_while] = ACTIONS(264), - [anon_sym_for] = ACTIONS(264), - [anon_sym_asyncfor] = ACTIONS(262), - [anon_sym_return] = ACTIONS(264), - [anon_sym_DASH_GT] = ACTIONS(262), - [anon_sym_assert] = ACTIONS(264), - [anon_sym_assert_equal] = ACTIONS(264), - [anon_sym_bash] = ACTIONS(264), - [anon_sym_download] = ACTIONS(264), - [anon_sym_either_or] = ACTIONS(264), - [anon_sym_fish] = ACTIONS(264), - [anon_sym_from_json] = ACTIONS(264), - [anon_sym_is_none] = ACTIONS(264), - [anon_sym_is_some] = ACTIONS(264), - [anon_sym_length] = ACTIONS(264), - [anon_sym_metadata] = ACTIONS(264), - [anon_sym_output] = ACTIONS(264), - [anon_sym_output_error] = ACTIONS(264), - [anon_sym_random] = ACTIONS(264), - [anon_sym_random_boolean] = ACTIONS(264), - [anon_sym_random_float] = ACTIONS(264), - [anon_sym_random_integer] = ACTIONS(264), - [anon_sym_read] = ACTIONS(264), - [anon_sym_to_json] = ACTIONS(264), - [anon_sym_write] = ACTIONS(264), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(266), - [sym__identifier_pattern] = ACTIONS(268), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_async] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(266), - [anon_sym_RBRACE] = ACTIONS(266), - [sym_integer] = ACTIONS(268), - [sym_float] = ACTIONS(266), - [sym_string] = ACTIONS(266), - [anon_sym_true] = ACTIONS(268), - [anon_sym_false] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_EQ] = ACTIONS(268), - [anon_sym_none] = ACTIONS(268), - [anon_sym_some] = ACTIONS(268), - [anon_sym_COLON] = ACTIONS(266), - [anon_sym_DOT_DOT] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(268), - [anon_sym_DASH] = ACTIONS(268), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(266), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_AMP_AMP] = ACTIONS(266), - [anon_sym_PIPE_PIPE] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(268), - [anon_sym_LT] = ACTIONS(268), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_PLUS_EQ] = ACTIONS(266), - [anon_sym_DASH_EQ] = ACTIONS(266), - [anon_sym_if] = ACTIONS(268), - [anon_sym_match] = ACTIONS(268), - [anon_sym_while] = ACTIONS(268), - [anon_sym_for] = ACTIONS(268), - [anon_sym_asyncfor] = ACTIONS(266), - [anon_sym_return] = ACTIONS(268), - [anon_sym_DASH_GT] = ACTIONS(266), - [anon_sym_assert] = ACTIONS(268), - [anon_sym_assert_equal] = ACTIONS(268), - [anon_sym_bash] = ACTIONS(268), - [anon_sym_download] = ACTIONS(268), - [anon_sym_either_or] = ACTIONS(268), - [anon_sym_fish] = ACTIONS(268), - [anon_sym_from_json] = ACTIONS(268), - [anon_sym_is_none] = ACTIONS(268), - [anon_sym_is_some] = ACTIONS(268), - [anon_sym_length] = ACTIONS(268), - [anon_sym_metadata] = ACTIONS(268), - [anon_sym_output] = ACTIONS(268), - [anon_sym_output_error] = ACTIONS(268), - [anon_sym_random] = ACTIONS(268), - [anon_sym_random_boolean] = ACTIONS(268), - [anon_sym_random_float] = ACTIONS(268), - [anon_sym_random_integer] = ACTIONS(268), - [anon_sym_read] = ACTIONS(268), - [anon_sym_to_json] = ACTIONS(268), - [anon_sym_write] = ACTIONS(268), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(270), - [sym__identifier_pattern] = ACTIONS(272), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_async] = ACTIONS(272), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(270), - [sym_integer] = ACTIONS(272), - [sym_float] = ACTIONS(270), - [sym_string] = ACTIONS(270), - [anon_sym_true] = ACTIONS(272), - [anon_sym_false] = ACTIONS(272), - [anon_sym_LBRACK] = ACTIONS(270), - [anon_sym_EQ] = ACTIONS(272), - [anon_sym_none] = ACTIONS(272), - [anon_sym_some] = ACTIONS(272), - [anon_sym_COLON] = ACTIONS(270), - [anon_sym_DOT_DOT] = ACTIONS(270), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(270), - [anon_sym_SLASH] = ACTIONS(270), - [anon_sym_PERCENT] = ACTIONS(270), - [anon_sym_EQ_EQ] = ACTIONS(270), - [anon_sym_BANG_EQ] = ACTIONS(270), - [anon_sym_AMP_AMP] = ACTIONS(270), - [anon_sym_PIPE_PIPE] = ACTIONS(270), - [anon_sym_GT] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(270), - [anon_sym_LT_EQ] = ACTIONS(270), - [anon_sym_PLUS_EQ] = ACTIONS(270), - [anon_sym_DASH_EQ] = ACTIONS(270), - [anon_sym_if] = ACTIONS(272), - [anon_sym_match] = ACTIONS(272), - [anon_sym_while] = ACTIONS(272), - [anon_sym_for] = ACTIONS(272), - [anon_sym_asyncfor] = ACTIONS(270), - [anon_sym_return] = ACTIONS(272), - [anon_sym_DASH_GT] = ACTIONS(270), - [anon_sym_assert] = ACTIONS(272), - [anon_sym_assert_equal] = ACTIONS(272), - [anon_sym_bash] = ACTIONS(272), - [anon_sym_download] = ACTIONS(272), - [anon_sym_either_or] = ACTIONS(272), - [anon_sym_fish] = ACTIONS(272), - [anon_sym_from_json] = ACTIONS(272), - [anon_sym_is_none] = ACTIONS(272), - [anon_sym_is_some] = ACTIONS(272), - [anon_sym_length] = ACTIONS(272), - [anon_sym_metadata] = ACTIONS(272), - [anon_sym_output] = ACTIONS(272), - [anon_sym_output_error] = ACTIONS(272), - [anon_sym_random] = ACTIONS(272), - [anon_sym_random_boolean] = ACTIONS(272), - [anon_sym_random_float] = ACTIONS(272), - [anon_sym_random_integer] = ACTIONS(272), - [anon_sym_read] = ACTIONS(272), - [anon_sym_to_json] = ACTIONS(272), - [anon_sym_write] = ACTIONS(272), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(242), - [sym__identifier_pattern] = ACTIONS(244), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(244), - [anon_sym_LBRACE] = ACTIONS(242), - [anon_sym_RBRACE] = ACTIONS(242), - [sym_integer] = ACTIONS(244), - [sym_float] = ACTIONS(242), - [sym_string] = ACTIONS(242), - [anon_sym_true] = ACTIONS(244), - [anon_sym_false] = ACTIONS(244), - [anon_sym_LBRACK] = ACTIONS(242), - [anon_sym_EQ] = ACTIONS(244), - [anon_sym_none] = ACTIONS(244), - [anon_sym_some] = ACTIONS(244), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_DOT_DOT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(244), - [anon_sym_DASH] = ACTIONS(244), - [anon_sym_STAR] = ACTIONS(242), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PERCENT] = ACTIONS(242), - [anon_sym_EQ_EQ] = ACTIONS(242), - [anon_sym_BANG_EQ] = ACTIONS(242), - [anon_sym_AMP_AMP] = ACTIONS(242), - [anon_sym_PIPE_PIPE] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(244), - [anon_sym_GT_EQ] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(242), - [anon_sym_PLUS_EQ] = ACTIONS(242), - [anon_sym_DASH_EQ] = ACTIONS(242), - [anon_sym_if] = ACTIONS(244), - [anon_sym_match] = ACTIONS(244), - [anon_sym_while] = ACTIONS(244), - [anon_sym_for] = ACTIONS(244), - [anon_sym_asyncfor] = ACTIONS(242), - [anon_sym_return] = ACTIONS(244), - [anon_sym_DASH_GT] = ACTIONS(242), - [anon_sym_assert] = ACTIONS(244), - [anon_sym_assert_equal] = ACTIONS(244), - [anon_sym_bash] = ACTIONS(244), - [anon_sym_download] = ACTIONS(244), - [anon_sym_either_or] = ACTIONS(244), - [anon_sym_fish] = ACTIONS(244), - [anon_sym_from_json] = ACTIONS(244), - [anon_sym_is_none] = ACTIONS(244), - [anon_sym_is_some] = ACTIONS(244), - [anon_sym_length] = ACTIONS(244), - [anon_sym_metadata] = ACTIONS(244), - [anon_sym_output] = ACTIONS(244), - [anon_sym_output_error] = ACTIONS(244), - [anon_sym_random] = ACTIONS(244), - [anon_sym_random_boolean] = ACTIONS(244), - [anon_sym_random_float] = ACTIONS(244), - [anon_sym_random_integer] = ACTIONS(244), - [anon_sym_read] = ACTIONS(244), - [anon_sym_to_json] = ACTIONS(244), - [anon_sym_write] = ACTIONS(244), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(274), - [sym__identifier_pattern] = ACTIONS(276), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(274), - [anon_sym_async] = ACTIONS(276), - [anon_sym_LBRACE] = ACTIONS(274), - [anon_sym_RBRACE] = ACTIONS(274), - [sym_integer] = ACTIONS(276), - [sym_float] = ACTIONS(274), - [sym_string] = ACTIONS(274), - [anon_sym_true] = ACTIONS(276), - [anon_sym_false] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_EQ] = ACTIONS(276), - [anon_sym_none] = ACTIONS(276), - [anon_sym_some] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_DOT_DOT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(276), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(274), - [anon_sym_BANG_EQ] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(274), - [anon_sym_PIPE_PIPE] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(276), - [anon_sym_LT] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_PLUS_EQ] = ACTIONS(274), - [anon_sym_DASH_EQ] = ACTIONS(274), - [anon_sym_if] = ACTIONS(276), - [anon_sym_match] = ACTIONS(276), - [anon_sym_while] = ACTIONS(276), - [anon_sym_for] = ACTIONS(276), - [anon_sym_asyncfor] = ACTIONS(274), - [anon_sym_return] = ACTIONS(276), - [anon_sym_DASH_GT] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(276), - [anon_sym_assert_equal] = ACTIONS(276), - [anon_sym_bash] = ACTIONS(276), - [anon_sym_download] = ACTIONS(276), - [anon_sym_either_or] = ACTIONS(276), - [anon_sym_fish] = ACTIONS(276), - [anon_sym_from_json] = ACTIONS(276), - [anon_sym_is_none] = ACTIONS(276), - [anon_sym_is_some] = ACTIONS(276), - [anon_sym_length] = ACTIONS(276), - [anon_sym_metadata] = ACTIONS(276), - [anon_sym_output] = ACTIONS(276), - [anon_sym_output_error] = ACTIONS(276), - [anon_sym_random] = ACTIONS(276), - [anon_sym_random_boolean] = ACTIONS(276), - [anon_sym_random_float] = ACTIONS(276), - [anon_sym_random_integer] = ACTIONS(276), - [anon_sym_read] = ACTIONS(276), - [anon_sym_to_json] = ACTIONS(276), - [anon_sym_write] = ACTIONS(276), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(278), - [sym__identifier_pattern] = ACTIONS(280), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(278), - [anon_sym_async] = ACTIONS(280), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(278), - [sym_integer] = ACTIONS(280), - [sym_float] = ACTIONS(278), - [sym_string] = ACTIONS(278), - [anon_sym_true] = ACTIONS(280), - [anon_sym_false] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(280), - [anon_sym_none] = ACTIONS(280), - [anon_sym_some] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_DOT_DOT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(280), - [anon_sym_DASH] = ACTIONS(280), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_EQ_EQ] = ACTIONS(278), - [anon_sym_BANG_EQ] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(278), - [anon_sym_PIPE_PIPE] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(280), - [anon_sym_LT] = ACTIONS(280), - [anon_sym_GT_EQ] = ACTIONS(278), - [anon_sym_LT_EQ] = ACTIONS(278), - [anon_sym_PLUS_EQ] = ACTIONS(278), - [anon_sym_DASH_EQ] = ACTIONS(278), - [anon_sym_if] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [anon_sym_for] = ACTIONS(280), - [anon_sym_asyncfor] = ACTIONS(278), - [anon_sym_return] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(278), - [anon_sym_assert] = ACTIONS(280), - [anon_sym_assert_equal] = ACTIONS(280), - [anon_sym_bash] = ACTIONS(280), - [anon_sym_download] = ACTIONS(280), - [anon_sym_either_or] = ACTIONS(280), - [anon_sym_fish] = ACTIONS(280), - [anon_sym_from_json] = ACTIONS(280), - [anon_sym_is_none] = ACTIONS(280), - [anon_sym_is_some] = ACTIONS(280), - [anon_sym_length] = ACTIONS(280), - [anon_sym_metadata] = ACTIONS(280), - [anon_sym_output] = ACTIONS(280), - [anon_sym_output_error] = ACTIONS(280), - [anon_sym_random] = ACTIONS(280), - [anon_sym_random_boolean] = ACTIONS(280), - [anon_sym_random_float] = ACTIONS(280), - [anon_sym_random_integer] = ACTIONS(280), - [anon_sym_read] = ACTIONS(280), - [anon_sym_to_json] = ACTIONS(280), - [anon_sym_write] = ACTIONS(280), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(282), - [sym__identifier_pattern] = ACTIONS(284), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_async] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_RBRACE] = ACTIONS(282), - [sym_integer] = ACTIONS(284), - [sym_float] = ACTIONS(282), - [sym_string] = ACTIONS(282), - [anon_sym_true] = ACTIONS(284), - [anon_sym_false] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_none] = ACTIONS(284), - [anon_sym_some] = ACTIONS(284), - [anon_sym_COLON] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_SLASH] = ACTIONS(282), - [anon_sym_PERCENT] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_if] = ACTIONS(284), - [anon_sym_match] = ACTIONS(284), - [anon_sym_while] = ACTIONS(284), - [anon_sym_for] = ACTIONS(284), - [anon_sym_asyncfor] = ACTIONS(282), - [anon_sym_return] = ACTIONS(284), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_assert] = ACTIONS(284), - [anon_sym_assert_equal] = ACTIONS(284), - [anon_sym_bash] = ACTIONS(284), - [anon_sym_download] = ACTIONS(284), - [anon_sym_either_or] = ACTIONS(284), - [anon_sym_fish] = ACTIONS(284), - [anon_sym_from_json] = ACTIONS(284), - [anon_sym_is_none] = ACTIONS(284), - [anon_sym_is_some] = ACTIONS(284), - [anon_sym_length] = ACTIONS(284), - [anon_sym_metadata] = ACTIONS(284), - [anon_sym_output] = ACTIONS(284), - [anon_sym_output_error] = ACTIONS(284), - [anon_sym_random] = ACTIONS(284), - [anon_sym_random_boolean] = ACTIONS(284), - [anon_sym_random_float] = ACTIONS(284), - [anon_sym_random_integer] = ACTIONS(284), - [anon_sym_read] = ACTIONS(284), - [anon_sym_to_json] = ACTIONS(284), - [anon_sym_write] = ACTIONS(284), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(286), - [sym__identifier_pattern] = ACTIONS(288), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(286), - [anon_sym_async] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(286), - [anon_sym_RBRACE] = ACTIONS(286), - [sym_integer] = ACTIONS(288), - [sym_float] = ACTIONS(286), - [sym_string] = ACTIONS(286), - [anon_sym_true] = ACTIONS(288), - [anon_sym_false] = ACTIONS(288), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(288), - [anon_sym_none] = ACTIONS(288), - [anon_sym_some] = ACTIONS(288), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_DOT_DOT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_EQ_EQ] = ACTIONS(286), - [anon_sym_BANG_EQ] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(286), - [anon_sym_PIPE_PIPE] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(288), - [anon_sym_GT_EQ] = ACTIONS(286), - [anon_sym_LT_EQ] = ACTIONS(286), - [anon_sym_PLUS_EQ] = ACTIONS(286), - [anon_sym_DASH_EQ] = ACTIONS(286), - [anon_sym_if] = ACTIONS(288), - [anon_sym_match] = ACTIONS(288), - [anon_sym_while] = ACTIONS(288), - [anon_sym_for] = ACTIONS(288), - [anon_sym_asyncfor] = ACTIONS(286), - [anon_sym_return] = ACTIONS(288), - [anon_sym_DASH_GT] = ACTIONS(286), - [anon_sym_assert] = ACTIONS(288), - [anon_sym_assert_equal] = ACTIONS(288), - [anon_sym_bash] = ACTIONS(288), - [anon_sym_download] = ACTIONS(288), - [anon_sym_either_or] = ACTIONS(288), - [anon_sym_fish] = ACTIONS(288), - [anon_sym_from_json] = ACTIONS(288), - [anon_sym_is_none] = ACTIONS(288), - [anon_sym_is_some] = ACTIONS(288), - [anon_sym_length] = ACTIONS(288), - [anon_sym_metadata] = ACTIONS(288), - [anon_sym_output] = ACTIONS(288), - [anon_sym_output_error] = ACTIONS(288), - [anon_sym_random] = ACTIONS(288), - [anon_sym_random_boolean] = ACTIONS(288), - [anon_sym_random_float] = ACTIONS(288), - [anon_sym_random_integer] = ACTIONS(288), - [anon_sym_read] = ACTIONS(288), - [anon_sym_to_json] = ACTIONS(288), - [anon_sym_write] = ACTIONS(288), - }, - [71] = { - [sym_assignment_operator] = STATE(40), - [ts_builtin_sym_end] = ACTIONS(222), - [sym__identifier_pattern] = ACTIONS(224), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(222), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(222), - [anon_sym_RBRACE] = ACTIONS(222), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(222), - [sym_string] = ACTIONS(222), - [anon_sym_true] = ACTIONS(224), - [anon_sym_false] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_none] = ACTIONS(224), - [anon_sym_some] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_SLASH] = ACTIONS(222), - [anon_sym_PERCENT] = ACTIONS(222), - [anon_sym_EQ_EQ] = ACTIONS(222), - [anon_sym_BANG_EQ] = ACTIONS(222), - [anon_sym_AMP_AMP] = ACTIONS(222), - [anon_sym_PIPE_PIPE] = ACTIONS(222), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_GT_EQ] = ACTIONS(222), - [anon_sym_LT_EQ] = ACTIONS(222), - [anon_sym_PLUS_EQ] = ACTIONS(232), - [anon_sym_DASH_EQ] = ACTIONS(232), - [anon_sym_if] = ACTIONS(224), - [anon_sym_match] = ACTIONS(224), - [anon_sym_while] = ACTIONS(224), - [anon_sym_for] = ACTIONS(224), - [anon_sym_asyncfor] = ACTIONS(222), - [anon_sym_return] = ACTIONS(224), - [anon_sym_DASH_GT] = ACTIONS(222), - [anon_sym_assert] = ACTIONS(224), - [anon_sym_assert_equal] = ACTIONS(224), - [anon_sym_bash] = ACTIONS(224), - [anon_sym_download] = ACTIONS(224), - [anon_sym_either_or] = ACTIONS(224), - [anon_sym_fish] = ACTIONS(224), - [anon_sym_from_json] = ACTIONS(224), - [anon_sym_is_none] = ACTIONS(224), - [anon_sym_is_some] = ACTIONS(224), - [anon_sym_length] = ACTIONS(224), - [anon_sym_metadata] = ACTIONS(224), - [anon_sym_output] = ACTIONS(224), - [anon_sym_output_error] = ACTIONS(224), - [anon_sym_random] = ACTIONS(224), - [anon_sym_random_boolean] = ACTIONS(224), - [anon_sym_random_float] = ACTIONS(224), - [anon_sym_random_integer] = ACTIONS(224), - [anon_sym_read] = ACTIONS(224), - [anon_sym_to_json] = ACTIONS(224), - [anon_sym_write] = ACTIONS(224), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(226), - [sym__identifier_pattern] = ACTIONS(260), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(226), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [sym_integer] = ACTIONS(260), - [sym_float] = ACTIONS(226), - [sym_string] = ACTIONS(226), - [anon_sym_true] = ACTIONS(260), - [anon_sym_false] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(226), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_none] = ACTIONS(260), - [anon_sym_some] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_DOT_DOT] = ACTIONS(226), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(226), - [anon_sym_SLASH] = ACTIONS(226), - [anon_sym_PERCENT] = ACTIONS(226), - [anon_sym_EQ_EQ] = ACTIONS(226), - [anon_sym_BANG_EQ] = ACTIONS(226), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_GT_EQ] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(226), - [anon_sym_DASH_EQ] = ACTIONS(226), - [anon_sym_if] = ACTIONS(260), - [anon_sym_match] = ACTIONS(260), - [anon_sym_while] = ACTIONS(260), - [anon_sym_for] = ACTIONS(260), - [anon_sym_asyncfor] = ACTIONS(226), - [anon_sym_return] = ACTIONS(260), - [anon_sym_DASH_GT] = ACTIONS(226), - [anon_sym_assert] = ACTIONS(260), - [anon_sym_assert_equal] = ACTIONS(260), - [anon_sym_bash] = ACTIONS(260), - [anon_sym_download] = ACTIONS(260), - [anon_sym_either_or] = ACTIONS(260), - [anon_sym_fish] = ACTIONS(260), - [anon_sym_from_json] = ACTIONS(260), - [anon_sym_is_none] = ACTIONS(260), - [anon_sym_is_some] = ACTIONS(260), - [anon_sym_length] = ACTIONS(260), - [anon_sym_metadata] = ACTIONS(260), - [anon_sym_output] = ACTIONS(260), - [anon_sym_output_error] = ACTIONS(260), - [anon_sym_random] = ACTIONS(260), - [anon_sym_random_boolean] = ACTIONS(260), - [anon_sym_random_float] = ACTIONS(260), - [anon_sym_random_integer] = ACTIONS(260), - [anon_sym_read] = ACTIONS(260), - [anon_sym_to_json] = ACTIONS(260), - [anon_sym_write] = ACTIONS(260), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(290), - [sym__identifier_pattern] = ACTIONS(292), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym_async] = ACTIONS(292), - [anon_sym_LBRACE] = ACTIONS(290), - [anon_sym_RBRACE] = ACTIONS(290), - [sym_integer] = ACTIONS(292), - [sym_float] = ACTIONS(290), - [sym_string] = ACTIONS(290), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(290), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_none] = ACTIONS(292), - [anon_sym_some] = ACTIONS(292), - [anon_sym_COLON] = ACTIONS(290), - [anon_sym_DOT_DOT] = ACTIONS(290), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_STAR] = ACTIONS(290), - [anon_sym_SLASH] = ACTIONS(290), - [anon_sym_PERCENT] = ACTIONS(290), - [anon_sym_EQ_EQ] = ACTIONS(290), - [anon_sym_BANG_EQ] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(292), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_PLUS_EQ] = ACTIONS(290), - [anon_sym_DASH_EQ] = ACTIONS(290), - [anon_sym_if] = ACTIONS(292), - [anon_sym_match] = ACTIONS(292), - [anon_sym_while] = ACTIONS(292), - [anon_sym_for] = ACTIONS(292), - [anon_sym_asyncfor] = ACTIONS(290), - [anon_sym_return] = ACTIONS(292), - [anon_sym_DASH_GT] = ACTIONS(290), - [anon_sym_assert] = ACTIONS(292), - [anon_sym_assert_equal] = ACTIONS(292), - [anon_sym_bash] = ACTIONS(292), - [anon_sym_download] = ACTIONS(292), - [anon_sym_either_or] = ACTIONS(292), - [anon_sym_fish] = ACTIONS(292), - [anon_sym_from_json] = ACTIONS(292), - [anon_sym_is_none] = ACTIONS(292), - [anon_sym_is_some] = ACTIONS(292), - [anon_sym_length] = ACTIONS(292), - [anon_sym_metadata] = ACTIONS(292), - [anon_sym_output] = ACTIONS(292), - [anon_sym_output_error] = ACTIONS(292), - [anon_sym_random] = ACTIONS(292), - [anon_sym_random_boolean] = ACTIONS(292), - [anon_sym_random_float] = ACTIONS(292), - [anon_sym_random_integer] = ACTIONS(292), - [anon_sym_read] = ACTIONS(292), - [anon_sym_to_json] = ACTIONS(292), - [anon_sym_write] = ACTIONS(292), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(294), - [sym__identifier_pattern] = ACTIONS(296), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(294), - [anon_sym_async] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(294), - [anon_sym_RBRACE] = ACTIONS(294), - [sym_integer] = ACTIONS(296), - [sym_float] = ACTIONS(294), - [sym_string] = ACTIONS(294), - [anon_sym_true] = ACTIONS(296), - [anon_sym_false] = ACTIONS(296), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_EQ] = ACTIONS(296), - [anon_sym_none] = ACTIONS(296), - [anon_sym_some] = ACTIONS(296), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_DOT_DOT] = ACTIONS(294), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_STAR] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(294), - [anon_sym_PERCENT] = ACTIONS(294), - [anon_sym_EQ_EQ] = ACTIONS(294), - [anon_sym_BANG_EQ] = ACTIONS(294), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_PIPE_PIPE] = ACTIONS(294), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_GT_EQ] = ACTIONS(294), - [anon_sym_LT_EQ] = ACTIONS(294), - [anon_sym_PLUS_EQ] = ACTIONS(294), - [anon_sym_DASH_EQ] = ACTIONS(294), - [anon_sym_if] = ACTIONS(296), - [anon_sym_match] = ACTIONS(296), - [anon_sym_while] = ACTIONS(296), - [anon_sym_for] = ACTIONS(296), - [anon_sym_asyncfor] = ACTIONS(294), - [anon_sym_return] = ACTIONS(296), - [anon_sym_DASH_GT] = ACTIONS(294), - [anon_sym_assert] = ACTIONS(296), - [anon_sym_assert_equal] = ACTIONS(296), - [anon_sym_bash] = ACTIONS(296), - [anon_sym_download] = ACTIONS(296), - [anon_sym_either_or] = ACTIONS(296), - [anon_sym_fish] = ACTIONS(296), - [anon_sym_from_json] = ACTIONS(296), - [anon_sym_is_none] = ACTIONS(296), - [anon_sym_is_some] = ACTIONS(296), - [anon_sym_length] = ACTIONS(296), - [anon_sym_metadata] = ACTIONS(296), - [anon_sym_output] = ACTIONS(296), - [anon_sym_output_error] = ACTIONS(296), - [anon_sym_random] = ACTIONS(296), - [anon_sym_random_boolean] = ACTIONS(296), - [anon_sym_random_float] = ACTIONS(296), - [anon_sym_random_integer] = ACTIONS(296), - [anon_sym_read] = ACTIONS(296), - [anon_sym_to_json] = ACTIONS(296), - [anon_sym_write] = ACTIONS(296), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(298), - [sym__identifier_pattern] = ACTIONS(300), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(298), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_async] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_RBRACE] = ACTIONS(298), - [sym_integer] = ACTIONS(300), - [sym_float] = ACTIONS(298), - [sym_string] = ACTIONS(298), - [anon_sym_true] = ACTIONS(300), - [anon_sym_false] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_none] = ACTIONS(300), - [anon_sym_some] = ACTIONS(300), - [anon_sym_COLON] = ACTIONS(298), - [anon_sym_DOT_DOT] = ACTIONS(298), - [anon_sym_PLUS] = ACTIONS(300), - [anon_sym_DASH] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(298), - [anon_sym_SLASH] = ACTIONS(298), - [anon_sym_PERCENT] = ACTIONS(298), - [anon_sym_EQ_EQ] = ACTIONS(298), - [anon_sym_BANG_EQ] = ACTIONS(298), - [anon_sym_AMP_AMP] = ACTIONS(298), - [anon_sym_PIPE_PIPE] = ACTIONS(298), - [anon_sym_GT] = ACTIONS(300), - [anon_sym_LT] = ACTIONS(300), - [anon_sym_GT_EQ] = ACTIONS(298), - [anon_sym_LT_EQ] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(298), - [anon_sym_DASH_EQ] = ACTIONS(298), - [anon_sym_if] = ACTIONS(300), - [anon_sym_match] = ACTIONS(300), - [anon_sym_while] = ACTIONS(300), - [anon_sym_for] = ACTIONS(300), - [anon_sym_asyncfor] = ACTIONS(298), - [anon_sym_return] = ACTIONS(300), - [anon_sym_DASH_GT] = ACTIONS(298), - [anon_sym_assert] = ACTIONS(300), - [anon_sym_assert_equal] = ACTIONS(300), - [anon_sym_bash] = ACTIONS(300), - [anon_sym_download] = ACTIONS(300), - [anon_sym_either_or] = ACTIONS(300), - [anon_sym_fish] = ACTIONS(300), - [anon_sym_from_json] = ACTIONS(300), - [anon_sym_is_none] = ACTIONS(300), - [anon_sym_is_some] = ACTIONS(300), - [anon_sym_length] = ACTIONS(300), - [anon_sym_metadata] = ACTIONS(300), - [anon_sym_output] = ACTIONS(300), - [anon_sym_output_error] = ACTIONS(300), - [anon_sym_random] = ACTIONS(300), - [anon_sym_random_boolean] = ACTIONS(300), - [anon_sym_random_float] = ACTIONS(300), - [anon_sym_random_integer] = ACTIONS(300), - [anon_sym_read] = ACTIONS(300), - [anon_sym_to_json] = ACTIONS(300), - [anon_sym_write] = ACTIONS(300), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(302), - [sym__identifier_pattern] = ACTIONS(304), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(302), - [anon_sym_async] = ACTIONS(304), - [anon_sym_LBRACE] = ACTIONS(302), - [anon_sym_RBRACE] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [sym_string] = ACTIONS(302), - [anon_sym_true] = ACTIONS(304), - [anon_sym_false] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(304), - [anon_sym_none] = ACTIONS(304), - [anon_sym_some] = ACTIONS(304), - [anon_sym_COLON] = ACTIONS(302), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_PERCENT] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(302), - [anon_sym_BANG_EQ] = ACTIONS(302), - [anon_sym_AMP_AMP] = ACTIONS(302), - [anon_sym_PIPE_PIPE] = ACTIONS(302), - [anon_sym_GT] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(304), - [anon_sym_GT_EQ] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(302), - [anon_sym_PLUS_EQ] = ACTIONS(302), - [anon_sym_DASH_EQ] = ACTIONS(302), - [anon_sym_if] = ACTIONS(304), - [anon_sym_match] = ACTIONS(304), - [anon_sym_while] = ACTIONS(304), - [anon_sym_for] = ACTIONS(304), - [anon_sym_asyncfor] = ACTIONS(302), - [anon_sym_return] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(302), - [anon_sym_assert] = ACTIONS(304), - [anon_sym_assert_equal] = ACTIONS(304), - [anon_sym_bash] = ACTIONS(304), - [anon_sym_download] = ACTIONS(304), - [anon_sym_either_or] = ACTIONS(304), - [anon_sym_fish] = ACTIONS(304), - [anon_sym_from_json] = ACTIONS(304), - [anon_sym_is_none] = ACTIONS(304), - [anon_sym_is_some] = ACTIONS(304), - [anon_sym_length] = ACTIONS(304), - [anon_sym_metadata] = ACTIONS(304), - [anon_sym_output] = ACTIONS(304), - [anon_sym_output_error] = ACTIONS(304), - [anon_sym_random] = ACTIONS(304), - [anon_sym_random_boolean] = ACTIONS(304), - [anon_sym_random_float] = ACTIONS(304), - [anon_sym_random_integer] = ACTIONS(304), - [anon_sym_read] = ACTIONS(304), - [anon_sym_to_json] = ACTIONS(304), - [anon_sym_write] = ACTIONS(304), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(222), - [sym__identifier_pattern] = ACTIONS(224), - [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(222), - [anon_sym_LPAREN] = ACTIONS(226), - [anon_sym_async] = ACTIONS(224), - [anon_sym_LBRACE] = ACTIONS(222), - [anon_sym_RBRACE] = ACTIONS(222), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(222), - [sym_string] = ACTIONS(222), - [anon_sym_true] = ACTIONS(224), - [anon_sym_false] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(224), - [anon_sym_none] = ACTIONS(224), - [anon_sym_some] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(222), - [anon_sym_DOT_DOT] = ACTIONS(222), - [anon_sym_PLUS] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(224), - [anon_sym_STAR] = ACTIONS(222), - [anon_sym_SLASH] = ACTIONS(222), - [anon_sym_PERCENT] = ACTIONS(222), - [anon_sym_EQ_EQ] = ACTIONS(222), - [anon_sym_BANG_EQ] = ACTIONS(222), - [anon_sym_AMP_AMP] = ACTIONS(222), - [anon_sym_PIPE_PIPE] = ACTIONS(222), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_GT_EQ] = ACTIONS(222), - [anon_sym_LT_EQ] = ACTIONS(222), - [anon_sym_PLUS_EQ] = ACTIONS(222), - [anon_sym_DASH_EQ] = ACTIONS(222), - [anon_sym_if] = ACTIONS(224), - [anon_sym_match] = ACTIONS(224), - [anon_sym_while] = ACTIONS(224), - [anon_sym_for] = ACTIONS(224), - [anon_sym_asyncfor] = ACTIONS(222), - [anon_sym_return] = ACTIONS(224), - [anon_sym_DASH_GT] = ACTIONS(222), - [anon_sym_assert] = ACTIONS(224), - [anon_sym_assert_equal] = ACTIONS(224), - [anon_sym_bash] = ACTIONS(224), - [anon_sym_download] = ACTIONS(224), - [anon_sym_either_or] = ACTIONS(224), - [anon_sym_fish] = ACTIONS(224), - [anon_sym_from_json] = ACTIONS(224), - [anon_sym_is_none] = ACTIONS(224), - [anon_sym_is_some] = ACTIONS(224), - [anon_sym_length] = ACTIONS(224), - [anon_sym_metadata] = ACTIONS(224), - [anon_sym_output] = ACTIONS(224), - [anon_sym_output_error] = ACTIONS(224), - [anon_sym_random] = ACTIONS(224), - [anon_sym_random_boolean] = ACTIONS(224), - [anon_sym_random_float] = ACTIONS(224), - [anon_sym_random_integer] = ACTIONS(224), - [anon_sym_read] = ACTIONS(224), - [anon_sym_to_json] = ACTIONS(224), - [anon_sym_write] = ACTIONS(224), - }, [78] = { - [ts_builtin_sym_end] = ACTIONS(306), - [sym__identifier_pattern] = ACTIONS(308), + [ts_builtin_sym_end] = ACTIONS(312), + [sym__identifier_pattern] = ACTIONS(314), [sym__comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(306), - [anon_sym_async] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(306), - [anon_sym_RBRACE] = ACTIONS(306), - [sym_integer] = ACTIONS(308), - [sym_float] = ACTIONS(306), - [sym_string] = ACTIONS(306), - [anon_sym_true] = ACTIONS(308), - [anon_sym_false] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(306), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_none] = ACTIONS(308), - [anon_sym_some] = ACTIONS(308), - [anon_sym_COLON] = ACTIONS(306), - [anon_sym_DOT_DOT] = ACTIONS(306), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(306), - [anon_sym_SLASH] = ACTIONS(306), - [anon_sym_PERCENT] = ACTIONS(306), - [anon_sym_EQ_EQ] = ACTIONS(306), - [anon_sym_BANG_EQ] = ACTIONS(306), - [anon_sym_AMP_AMP] = ACTIONS(306), - [anon_sym_PIPE_PIPE] = ACTIONS(306), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_LT] = ACTIONS(308), - [anon_sym_GT_EQ] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(306), - [anon_sym_DASH_EQ] = ACTIONS(306), - [anon_sym_if] = ACTIONS(308), - [anon_sym_match] = ACTIONS(308), - [anon_sym_while] = ACTIONS(308), - [anon_sym_for] = ACTIONS(308), - [anon_sym_asyncfor] = ACTIONS(306), - [anon_sym_return] = ACTIONS(308), - [anon_sym_DASH_GT] = ACTIONS(306), - [anon_sym_assert] = ACTIONS(308), - [anon_sym_assert_equal] = ACTIONS(308), - [anon_sym_bash] = ACTIONS(308), - [anon_sym_download] = ACTIONS(308), - [anon_sym_either_or] = ACTIONS(308), - [anon_sym_fish] = ACTIONS(308), - [anon_sym_from_json] = ACTIONS(308), - [anon_sym_is_none] = ACTIONS(308), - [anon_sym_is_some] = ACTIONS(308), - [anon_sym_length] = ACTIONS(308), - [anon_sym_metadata] = ACTIONS(308), - [anon_sym_output] = ACTIONS(308), - [anon_sym_output_error] = ACTIONS(308), - [anon_sym_random] = ACTIONS(308), - [anon_sym_random_boolean] = ACTIONS(308), - [anon_sym_random_float] = ACTIONS(308), - [anon_sym_random_integer] = ACTIONS(308), - [anon_sym_read] = ACTIONS(308), - [anon_sym_to_json] = ACTIONS(308), - [anon_sym_write] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_async] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(312), + [sym_integer] = ACTIONS(314), + [sym_float] = ACTIONS(312), + [sym_string] = ACTIONS(312), + [anon_sym_true] = ACTIONS(314), + [anon_sym_false] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(314), + [anon_sym_none] = ACTIONS(314), + [anon_sym_some] = ACTIONS(314), + [anon_sym_COLON] = ACTIONS(312), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_PLUS] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(314), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(312), + [anon_sym_BANG_EQ] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(312), + [anon_sym_PIPE_PIPE] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(312), + [anon_sym_LT_EQ] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(312), + [anon_sym_DASH_EQ] = ACTIONS(312), + [anon_sym_if] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_while] = ACTIONS(314), + [anon_sym_for] = ACTIONS(314), + [anon_sym_asyncfor] = ACTIONS(312), + [anon_sym_return] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(312), + [anon_sym_assert] = ACTIONS(314), + [anon_sym_assert_equal] = ACTIONS(314), + [anon_sym_bash] = ACTIONS(314), + [anon_sym_download] = ACTIONS(314), + [anon_sym_either_or] = ACTIONS(314), + [anon_sym_fish] = ACTIONS(314), + [anon_sym_from_json] = ACTIONS(314), + [anon_sym_is_none] = ACTIONS(314), + [anon_sym_is_some] = ACTIONS(314), + [anon_sym_length] = ACTIONS(314), + [anon_sym_metadata] = ACTIONS(314), + [anon_sym_output] = ACTIONS(314), + [anon_sym_output_error] = ACTIONS(314), + [anon_sym_random] = ACTIONS(314), + [anon_sym_random_boolean] = ACTIONS(314), + [anon_sym_random_float] = ACTIONS(314), + [anon_sym_random_integer] = ACTIONS(314), + [anon_sym_read] = ACTIONS(314), + [anon_sym_to_json] = ACTIONS(314), + [anon_sym_write] = ACTIONS(314), }, }; @@ -7975,34 +8077,34 @@ static const uint16_t ts_small_parse_table[] = { [0] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(218), 1, + ACTIONS(222), 1, anon_sym_COLON, - ACTIONS(220), 1, + ACTIONS(224), 1, anon_sym_DASH_GT, - ACTIONS(314), 1, + ACTIONS(320), 1, anon_sym_SEMI, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - STATE(215), 1, + STATE(190), 1, sym_logic_operator, - STATE(219), 1, + STATE(191), 1, sym_math_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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(310), 8, + ACTIONS(316), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACE, @@ -8011,7 +8113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(312), 32, + ACTIONS(318), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -8047,32 +8149,32 @@ static const uint16_t ts_small_parse_table[] = { [84] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(218), 1, + ACTIONS(222), 1, anon_sym_COLON, - ACTIONS(220), 1, + ACTIONS(224), 1, anon_sym_DASH_GT, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - STATE(215), 1, + STATE(190), 1, sym_logic_operator, - STATE(219), 1, + STATE(191), 1, sym_math_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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(310), 9, + ACTIONS(316), 9, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -8082,7 +8184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(312), 32, + ACTIONS(318), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -8115,14 +8217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [166] = 5, + [166] = 7, ACTIONS(3), 1, sym__comment, - STATE(183), 1, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(332), 1, + anon_sym_DASH_GT, + STATE(200), 1, sym_math_operator, - STATE(211), 1, + STATE(201), 1, sym_logic_operator, - ACTIONS(188), 24, + ACTIONS(200), 22, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8133,7 +8239,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -8146,8 +8251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_DASH_GT, - ACTIONS(190), 31, + ACTIONS(202), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8179,16 +8283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [235] = 6, + [239] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(324), 1, - anon_sym_DOT_DOT, - STATE(183), 1, + STATE(200), 1, sym_math_operator, - STATE(211), 1, + STATE(201), 1, sym_logic_operator, - ACTIONS(188), 23, + ACTIONS(196), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8200,6 +8302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8212,7 +8315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(190), 31, + ACTIONS(198), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8244,18 +8347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [306] = 7, + [308] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(326), 1, - anon_sym_COLON, - ACTIONS(328), 1, - anon_sym_DASH_GT, - STATE(183), 1, + ACTIONS(334), 1, + anon_sym_DOT_DOT, + STATE(200), 1, sym_math_operator, - STATE(211), 1, + STATE(201), 1, sym_logic_operator, - ACTIONS(206), 22, + ACTIONS(204), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8266,7 +8367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8278,7 +8379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(208), 31, + anon_sym_DASH_GT, + ACTIONS(206), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8313,15 +8415,15 @@ static const uint16_t ts_small_parse_table[] = { [379] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(326), 1, + ACTIONS(330), 1, anon_sym_COLON, - ACTIONS(328), 1, + ACTIONS(332), 1, anon_sym_DASH_GT, - STATE(183), 1, + STATE(200), 1, sym_math_operator, - STATE(211), 1, + STATE(201), 1, sym_logic_operator, - ACTIONS(198), 22, + ACTIONS(188), 22, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8344,7 +8446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(200), 31, + ACTIONS(190), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8379,11 +8481,11 @@ static const uint16_t ts_small_parse_table[] = { [452] = 5, ACTIONS(3), 1, sym__comment, - STATE(183), 1, + STATE(200), 1, sym_math_operator, - STATE(211), 1, + STATE(201), 1, sym_logic_operator, - ACTIONS(194), 24, + ACTIONS(204), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8408,7 +8510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(196), 31, + ACTIONS(206), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8440,18 +8542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [521] = 7, + [521] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(330), 1, - anon_sym_COLON, - ACTIONS(332), 1, - anon_sym_DASH_GT, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, + STATE(168), 1, sym_logic_operator, - ACTIONS(198), 21, + STATE(169), 1, + sym_math_operator, + ACTIONS(196), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8462,6 +8560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8473,7 +8572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(200), 31, + anon_sym_DASH_GT, + ACTIONS(198), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8505,18 +8605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [593] = 7, + [589] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(330), 1, + ACTIONS(336), 1, anon_sym_COLON, - ACTIONS(332), 1, + ACTIONS(338), 1, anon_sym_DASH_GT, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, + STATE(168), 1, sym_logic_operator, - ACTIONS(206), 21, + STATE(169), 1, + sym_math_operator, + ACTIONS(200), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8538,7 +8638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(208), 31, + ACTIONS(202), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8570,14 +8670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [665] = 5, + [661] = 7, ACTIONS(3), 1, sym__comment, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + STATE(168), 1, sym_logic_operator, - ACTIONS(194), 23, + STATE(169), 1, + sym_math_operator, + ACTIONS(188), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8588,7 +8692,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8600,8 +8703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_DASH_GT, - ACTIONS(196), 31, + ACTIONS(190), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8636,7 +8738,7 @@ static const uint16_t ts_small_parse_table[] = { [733] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(306), 24, + ACTIONS(264), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8661,7 +8763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(308), 31, + ACTIONS(266), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8693,12 +8795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [796] = 3, + [796] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(290), 24, - anon_sym_SEMI, + ACTIONS(214), 1, anon_sym_LPAREN, + ACTIONS(284), 23, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -8721,7 +8824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(292), 31, + ACTIONS(286), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8753,13 +8856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [859] = 4, + [861] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(222), 23, + ACTIONS(248), 24, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -8782,7 +8884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(224), 31, + ACTIONS(250), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8814,13 +8916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [924] = 4, + [924] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(242), 23, + ACTIONS(268), 24, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, @@ -8843,7 +8944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(244), 31, + ACTIONS(270), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8875,10 +8976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [989] = 3, + [987] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(274), 24, + ACTIONS(292), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8903,7 +9004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(276), 31, + ACTIONS(294), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8935,10 +9036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1052] = 3, + [1050] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(250), 24, + ACTIONS(308), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -8963,7 +9064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(252), 31, + ACTIONS(310), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8995,10 +9096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1115] = 3, + [1113] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(234), 24, + ACTIONS(272), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9023,7 +9124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(236), 31, + ACTIONS(274), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9055,10 +9156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1178] = 3, + [1176] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(298), 24, + ACTIONS(256), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9083,7 +9184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(300), 31, + ACTIONS(258), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9115,10 +9216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1241] = 3, + [1239] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(282), 24, + ACTIONS(236), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9143,7 +9244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(284), 31, + ACTIONS(238), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9175,10 +9276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1304] = 3, + [1302] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(246), 24, + ACTIONS(296), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9203,7 +9304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(248), 31, + ACTIONS(298), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9235,10 +9336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1367] = 3, + [1365] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(286), 24, + ACTIONS(304), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9263,7 +9364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(288), 31, + ACTIONS(306), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9295,10 +9396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1430] = 3, + [1428] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(270), 24, + ACTIONS(230), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9323,7 +9424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(272), 31, + ACTIONS(232), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9355,10 +9456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1493] = 3, + [1491] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(238), 24, + ACTIONS(280), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9383,7 +9484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(240), 31, + ACTIONS(282), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9415,10 +9516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1556] = 3, + [1554] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(294), 24, + ACTIONS(244), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9443,7 +9544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(296), 31, + ACTIONS(246), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9475,10 +9576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1619] = 3, + [1617] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(210), 24, + ACTIONS(312), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9503,6 +9604,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, + ACTIONS(314), 31, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [1680] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, + ACTIONS(254), 31, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [1743] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, + ACTIONS(290), 31, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_EQ, + anon_sym_none, + anon_sym_some, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [1806] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 1, + anon_sym_LPAREN, + ACTIONS(210), 23, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, ACTIONS(212), 31, sym__identifier_pattern, sym_integer, @@ -9535,190 +9817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1682] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(302), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, - ACTIONS(304), 31, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [1745] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(214), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, - ACTIONS(216), 31, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [1808] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(278), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, - ACTIONS(280), 31, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - anon_sym_none, - anon_sym_some, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, [1871] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(242), 24, + ACTIONS(300), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9743,7 +9845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(244), 31, + ACTIONS(302), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9778,7 +9880,7 @@ static const uint16_t ts_small_parse_table[] = { [1934] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 24, + ACTIONS(276), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9803,7 +9905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(260), 31, + ACTIONS(278), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9838,7 +9940,7 @@ static const uint16_t ts_small_parse_table[] = { [1997] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(254), 24, + ACTIONS(260), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9863,7 +9965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(256), 31, + ACTIONS(262), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9923,7 +10025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(260), 31, + ACTIONS(228), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9958,7 +10060,7 @@ static const uint16_t ts_small_parse_table[] = { [2123] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(266), 24, + ACTIONS(240), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -9983,7 +10085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(268), 31, + ACTIONS(242), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -10018,7 +10120,7 @@ static const uint16_t ts_small_parse_table[] = { [2186] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(262), 24, + ACTIONS(284), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -10043,7 +10145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(264), 31, + ACTIONS(286), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -10078,20 +10180,20 @@ static const uint16_t ts_small_parse_table[] = { [2249] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, + ACTIONS(214), 1, anon_sym_LPAREN, - ACTIONS(228), 1, + ACTIONS(216), 1, anon_sym_EQ, - ACTIONS(230), 1, + ACTIONS(218), 1, anon_sym_LT, - STATE(37), 1, + STATE(34), 1, sym_assignment_operator, - STATE(339), 1, + STATE(361), 1, sym_type_definition, - ACTIONS(232), 2, + ACTIONS(220), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(222), 18, + ACTIONS(210), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -10110,7 +10212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - ACTIONS(224), 29, + ACTIONS(212), 29, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -10143,16 +10245,16 @@ static const uint16_t ts_small_parse_table[] = { [2323] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 1, + ACTIONS(214), 1, anon_sym_LPAREN, - ACTIONS(228), 1, + ACTIONS(216), 1, anon_sym_EQ, - STATE(34), 1, + STATE(33), 1, sym_assignment_operator, - ACTIONS(232), 2, + ACTIONS(220), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(222), 18, + ACTIONS(210), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, @@ -10171,7 +10273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - ACTIONS(224), 30, + ACTIONS(212), 30, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -10202,1013 +10304,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2392] = 11, + [2392] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(330), 1, - anon_sym_COLON, - ACTIONS(332), 1, - anon_sym_DASH_GT, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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(310), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(312), 26, + ACTIONS(158), 1, sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2467] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(330), 1, - anon_sym_COLON, - ACTIONS(332), 1, - anon_sym_DASH_GT, - ACTIONS(334), 1, - anon_sym_SEMI, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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(310), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, + ACTIONS(172), 1, anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(312), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, + ACTIONS(174), 1, anon_sym_none, + ACTIONS(176), 1, anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2544] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(180), 1, - sym_logic_operator, - STATE(181), 1, - sym_math_operator, - ACTIONS(188), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(190), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2606] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(338), 1, - anon_sym_RBRACE, ACTIONS(340), 1, - anon_sym_STAR, - STATE(126), 1, - aux_sym_match_repeat1, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(308), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2700] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(180), 1, - sym_logic_operator, - STATE(181), 1, - sym_math_operator, - ACTIONS(194), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LBRACE, + ACTIONS(342), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(196), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2762] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(330), 1, - anon_sym_COLON, - ACTIONS(332), 1, - anon_sym_DASH_GT, - ACTIONS(346), 1, - anon_sym_COMMA, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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(344), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(342), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2838] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(330), 1, - anon_sym_COLON, - ACTIONS(332), 1, - anon_sym_DASH_GT, - ACTIONS(352), 1, - anon_sym_COMMA, - STATE(179), 1, - sym_math_operator, - STATE(207), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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(350), 6, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(348), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2914] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(354), 1, - anon_sym_COLON, - ACTIONS(356), 1, - anon_sym_DASH_GT, - STATE(180), 1, - sym_logic_operator, - STATE(181), 1, - sym_math_operator, - ACTIONS(198), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - ACTIONS(200), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [2980] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(354), 1, - anon_sym_COLON, - ACTIONS(356), 1, - anon_sym_DASH_GT, - STATE(180), 1, - sym_logic_operator, - STATE(181), 1, - sym_math_operator, - ACTIONS(206), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - ACTIONS(208), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3046] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - anon_sym_STAR, - ACTIONS(358), 1, - anon_sym_RBRACE, - STATE(126), 1, - aux_sym_match_repeat1, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(308), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3140] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(360), 1, - anon_sym_DOT_DOT, - STATE(180), 1, - sym_logic_operator, - STATE(181), 1, - sym_math_operator, - ACTIONS(188), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - 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, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(190), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3204] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(362), 1, - sym__identifier_pattern, - ACTIONS(365), 1, - anon_sym_LPAREN, - ACTIONS(368), 1, - anon_sym_LBRACE, - ACTIONS(371), 1, - anon_sym_RBRACE, - ACTIONS(373), 1, - sym_integer, - ACTIONS(382), 1, - anon_sym_LBRACK, - ACTIONS(385), 1, - anon_sym_none, - ACTIONS(388), 1, - anon_sym_some, - ACTIONS(391), 1, - anon_sym_STAR, - STATE(126), 1, - aux_sym_match_repeat1, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(308), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(376), 2, - sym_float, - sym_string, - ACTIONS(379), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(394), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3298] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, + ACTIONS(344), 1, anon_sym_STAR, + STATE(78), 1, + sym__function_expression_kind, STATE(118), 1, aux_sym_match_repeat1, - STATE(166), 1, + STATE(160), 1, sym_built_in_function, - STATE(175), 1, + STATE(170), 1, sym_function, - STATE(308), 1, + STATE(331), 1, sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3389] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - anon_sym_STAR, - STATE(124), 1, - aux_sym_match_repeat1, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(308), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3480] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(397), 1, - sym__identifier_pattern, - ACTIONS(400), 1, - anon_sym_LPAREN, - ACTIONS(403), 1, - anon_sym_LBRACE, - ACTIONS(406), 1, - sym_integer, - ACTIONS(415), 1, - anon_sym_LBRACK, - ACTIONS(418), 1, - anon_sym_RBRACK, - ACTIONS(420), 1, - anon_sym_none, - ACTIONS(423), 1, - anon_sym_some, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(121), 1, - sym_expression, - STATE(129), 1, - aux_sym_list_repeat1, - STATE(362), 1, - sym_function_expression, - ACTIONS(409), 2, - sym_float, - sym_string, - ACTIONS(412), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(426), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3571] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(431), 1, - anon_sym_RBRACK, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(121), 1, - sym_expression, - STATE(135), 1, - aux_sym_list_repeat1, - STATE(362), 1, + STATE(398), 1, sym_function_expression, ACTIONS(168), 2, sym_float, @@ -11216,21 +10343,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, @@ -11252,393 +10379,534 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [3662] = 20, + [2489] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(433), 1, - sym__identifier_pattern, - ACTIONS(436), 1, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + ACTIONS(346), 1, + anon_sym_SEMI, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(316), 8, anon_sym_LPAREN, - ACTIONS(439), 1, - anon_sym_RPAREN, - ACTIONS(441), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(444), 1, - sym_integer, - ACTIONS(453), 1, + anon_sym_RBRACE, + sym_float, + sym_string, anon_sym_LBRACK, - ACTIONS(456), 1, + anon_sym_STAR, + ACTIONS(318), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, anon_sym_none, - ACTIONS(459), 1, anon_sym_some, - STATE(92), 1, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [2566] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(316), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(318), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [2641] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 1, + sym__identifier_pattern, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(357), 1, + anon_sym_RBRACE, + ACTIONS(359), 1, + sym_integer, + ACTIONS(368), 1, + anon_sym_LBRACK, + ACTIONS(371), 1, + anon_sym_none, + ACTIONS(374), 1, + anon_sym_some, + ACTIONS(377), 1, + anon_sym_STAR, + STATE(78), 1, + sym__function_expression_kind, + STATE(118), 1, + aux_sym_match_repeat1, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, sym_function, - STATE(103), 1, + STATE(331), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(362), 2, + sym_float, + sym_string, + ACTIONS(365), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(380), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [2738] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(344), 1, + anon_sym_STAR, + ACTIONS(383), 1, + anon_sym_RBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(118), 1, + aux_sym_match_repeat1, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(331), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [2835] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(385), 1, + sym__identifier_pattern, + ACTIONS(388), 1, + anon_sym_LPAREN, + ACTIONS(391), 1, + anon_sym_RPAREN, + ACTIONS(393), 1, + anon_sym_LBRACE, + ACTIONS(396), 1, + sym_integer, + ACTIONS(405), 1, + anon_sym_LBRACK, + ACTIONS(408), 1, + anon_sym_none, + ACTIONS(411), 1, + anon_sym_some, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, sym_built_in_function, STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(399), 2, + sym_float, + sym_string, + ACTIONS(402), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(414), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [2929] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(417), 1, + anon_sym_RPAREN, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3023] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(421), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(130), 1, + sym_expression, + STATE(140), 1, + aux_sym_list_repeat1, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3117] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(423), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(130), 1, sym_expression, STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(447), 2, - sym_float, - sym_string, - ACTIONS(450), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(462), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3753] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(465), 1, - anon_sym_RPAREN, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(282), 1, - aux_sym_function_repeat1, - STATE(306), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 3, - sym_index, - sym_function_call, - sym_yield, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(320), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3846] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_RPAREN, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(280), 1, - aux_sym_function_repeat1, - STATE(306), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(176), 3, - sym_index, - sym_function_call, - sym_yield, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(320), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [3939] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(469), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(120), 1, - sym_expression, - STATE(138), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4030] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(471), 1, - anon_sym_RBRACK, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(121), 1, - sym_expression, - STATE(129), 1, aux_sym_list_repeat1, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4121] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(473), 1, - anon_sym_RPAREN, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(278), 1, - aux_sym_function_repeat1, - STATE(306), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - STATE(361), 1, + STATE(391), 1, sym_function_expression, ACTIONS(134), 2, sym_float, @@ -11646,20 +10914,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(176), 3, - sym_index, - sym_function_call, - sym_yield, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(320), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -11681,7 +10950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4214] = 20, + [3211] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -11696,234 +10965,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - ACTIONS(475), 1, + ACTIONS(425), 1, anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, + STATE(160), 1, sym_built_in_function, - STATE(120), 1, + STATE(170), 1, + sym_function, + STATE(293), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(377), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(342), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3307] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(427), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(287), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(376), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(342), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3403] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(429), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(291), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(380), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(342), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3499] = 22, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(425), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(293), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(380), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(345), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3595] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(431), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(137), 1, sym_expression, STATE(139), 1, aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4305] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(477), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(120), 1, - sym_expression, - STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4396] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(479), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(120), 1, - sym_expression, - STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4487] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(467), 1, - anon_sym_RPAREN, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(280), 1, - aux_sym_function_repeat1, - STATE(306), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - STATE(361), 1, + STATE(391), 1, sym_function_expression, ACTIONS(134), 2, sym_float, @@ -11931,20 +11283,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(176), 3, - sym_index, - sym_function_call, - sym_yield, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(321), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -11966,7 +11319,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4580] = 20, + [3689] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(433), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(121), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3783] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + ACTIONS(439), 1, + anon_sym_COMMA, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(437), 6, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(435), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3859] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(130), 1, + sym_expression, + STATE(140), 1, + aux_sym_list_repeat1, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [3953] = 21, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -11981,19 +11544,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - ACTIONS(481), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, + ACTIONS(344), 1, + anon_sym_STAR, + STATE(78), 1, + sym__function_expression_kind, + STATE(119), 1, + aux_sym_match_repeat1, + STATE(160), 1, sym_built_in_function, - STATE(120), 1, + STATE(170), 1, + sym_function, + STATE(331), 1, sym_expression, - STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, + STATE(398), 1, sym_function_expression, ACTIONS(168), 2, sym_float, @@ -12001,21 +11566,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, @@ -12037,229 +11602,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4671] = 5, + [4047] = 21, ACTIONS(3), 1, sym__comment, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(194), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - 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, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(196), 27, - anon_sym_async, + ACTIONS(124), 1, sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4732] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(206), 18, - anon_sym_SEMI, + ACTIONS(126), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(208), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4797] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(198), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(200), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [4862] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(132), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(138), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(140), 1, anon_sym_none, - ACTIONS(176), 1, + ACTIONS(142), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(419), 1, anon_sym_LBRACE, + ACTIONS(443), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(135), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4141] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(445), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(130), 1, + sym_expression, + STATE(140), 1, + aux_sym_list_repeat1, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4235] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(447), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4329] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(449), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4423] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + ACTIONS(455), 1, + anon_sym_COMMA, + STATE(168), 1, + sym_logic_operator, + STATE(169), 1, + sym_math_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(453), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(451), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4499] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(457), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4593] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + ACTIONS(459), 1, + anon_sym_RPAREN, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(120), 1, + aux_sym__expression_list, + STATE(137), 1, + sym_expression, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4687] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(461), 1, + sym__identifier_pattern, + ACTIONS(464), 1, + anon_sym_LPAREN, + ACTIONS(467), 1, + anon_sym_LBRACE, + ACTIONS(470), 1, + sym_integer, + ACTIONS(479), 1, + anon_sym_LBRACK, + ACTIONS(482), 1, + anon_sym_RBRACK, + ACTIONS(484), 1, + anon_sym_none, ACTIONS(487), 1, - anon_sym_RBRACK, - STATE(92), 1, + anon_sym_some, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, sym_function, - STATE(103), 1, + STATE(110), 1, sym_built_in_function, - STATE(121), 1, + STATE(130), 1, sym_expression, - STATE(129), 1, + STATE(140), 1, aux_sym_list_repeat1, - STATE(362), 1, + STATE(391), 1, sym_function_expression, - ACTIONS(168), 2, + ACTIONS(473), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(476), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(107), 4, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, sym_boolean, sym_list, sym_map, sym_option, - ACTIONS(186), 20, + ACTIONS(490), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -12280,249 +12177,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4953] = 20, + [4781] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(124), 1, sym__identifier_pattern, - ACTIONS(160), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(132), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(138), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(140), 1, anon_sym_none, - ACTIONS(176), 1, + ACTIONS(142), 1, anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(489), 1, - anon_sym_RPAREN, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(120), 1, - sym_expression, - STATE(150), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [5044] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(491), 1, - anon_sym_RBRACK, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(121), 1, - sym_expression, - STATE(153), 1, - aux_sym_list_repeat1, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [5135] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, + ACTIONS(419), 1, anon_sym_LBRACE, ACTIONS(493), 1, - anon_sym_RPAREN, - STATE(92), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, sym_function, - STATE(103), 1, + STATE(110), 1, sym_built_in_function, - STATE(120), 1, + STATE(122), 1, + aux_sym_list_repeat1, + STATE(130), 1, sym_expression, - STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [5226] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(465), 1, - anon_sym_RPAREN, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(282), 1, - aux_sym_function_repeat1, - STATE(306), 1, - sym_identifier, - STATE(313), 1, - sym_expression, - STATE(361), 1, + STATE(391), 1, sym_function_expression, ACTIONS(134), 2, sym_float, @@ -12530,20 +12214,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(176), 3, - sym_index, - sym_function_call, - sym_yield, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(323), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -12565,7 +12250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5319] = 20, + [4875] = 22, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -12580,42 +12265,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, ACTIONS(429), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(291), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(380), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(346), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [4971] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, anon_sym_LBRACE, ACTIONS(495), 1, - anon_sym_RPAREN, - STATE(92), 1, + anon_sym_RBRACK, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, sym_function, - STATE(103), 1, + STATE(110), 1, sym_built_in_function, - STATE(120), 1, + STATE(130), 1, sym_expression, - STATE(131), 1, - aux_sym__expression_list, - STATE(362), 1, + STATE(134), 1, + aux_sym_list_repeat1, + STATE(391), 1, sym_function_expression, - ACTIONS(168), 2, + ACTIONS(134), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(107), 4, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, sym_boolean, sym_list, sym_map, sym_option, - ACTIONS(186), 20, + ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -12636,128 +12397,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5410] = 20, + [5065] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(124), 1, sym__identifier_pattern, - ACTIONS(160), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(132), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(138), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(140), 1, anon_sym_none, - ACTIONS(176), 1, + ACTIONS(142), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(419), 1, anon_sym_LBRACE, ACTIONS(497), 1, - anon_sym_RBRACK, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(121), 1, - sym_expression, - STATE(145), 1, - aux_sym_list_repeat1, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [5501] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - ACTIONS(499), 1, anon_sym_RPAREN, - STATE(92), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(90), 1, sym_function, - STATE(103), 1, + STATE(110), 1, sym_built_in_function, STATE(120), 1, - sym_expression, - STATE(131), 1, aux_sym__expression_list, - STATE(362), 1, + STATE(137), 1, + sym_expression, + STATE(391), 1, sym_function_expression, - ACTIONS(168), 2, + ACTIONS(134), 2, sym_float, sym_string, - ACTIONS(170), 2, + ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(107), 4, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, sym_boolean, sym_list, sym_map, sym_option, - ACTIONS(186), 20, + ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -12778,7 +12470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5592] = 20, + [5159] = 21, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -12793,19 +12485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - ACTIONS(501), 1, - anon_sym_RBRACK, - STATE(92), 1, - sym_function, - STATE(103), 1, + ACTIONS(344), 1, + anon_sym_STAR, + STATE(78), 1, + sym__function_expression_kind, + STATE(115), 1, + aux_sym_match_repeat1, + STATE(160), 1, sym_built_in_function, - STATE(121), 1, + STATE(170), 1, + sym_function, + STATE(331), 1, sym_expression, - STATE(129), 1, - aux_sym_list_repeat1, - STATE(362), 1, + STATE(398), 1, sym_function_expression, ACTIONS(168), 2, sym_float, @@ -12813,21 +12507,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, @@ -12849,17 +12543,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5683] = 3, + [5253] = 22, ACTIONS(3), 1, sym__comment, - ACTIONS(266), 21, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(427), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(287), 1, + aux_sym_function_repeat1, + STATE(325), 1, + sym_identifier, + STATE(334), 1, + sym_expression, + STATE(380), 1, + sym__function_expression_kind, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(172), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(342), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5349] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(499), 1, + anon_sym_COLON, + ACTIONS(501), 1, + anon_sym_DASH_GT, + STATE(215), 1, + sym_math_operator, + STATE(216), 1, + sym_logic_operator, + ACTIONS(200), 18, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -12873,8 +12647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(268), 27, + ACTIONS(202), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -12902,13 +12675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5739] = 3, + [5414] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(286), 21, + STATE(215), 1, + sym_math_operator, + STATE(216), 1, + sym_logic_operator, + ACTIONS(204), 20, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, @@ -12927,7 +12703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(288), 27, + ACTIONS(206), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -12955,7 +12731,728 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5795] = 3, + [5475] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(499), 1, + anon_sym_COLON, + ACTIONS(501), 1, + anon_sym_DASH_GT, + STATE(215), 1, + sym_math_operator, + STATE(216), 1, + sym_logic_operator, + ACTIONS(188), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + ACTIONS(190), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5540] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(503), 1, + anon_sym_DOT_DOT, + STATE(215), 1, + sym_math_operator, + STATE(216), 1, + sym_logic_operator, + ACTIONS(204), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + 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, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(206), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5603] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(215), 1, + sym_math_operator, + STATE(216), 1, + sym_logic_operator, + ACTIONS(196), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(198), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5664] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(194), 1, + sym_function_expression, + STATE(336), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(171), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5748] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(150), 1, + sym_expression, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5836] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(315), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [5924] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(327), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6012] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(311), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6100] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(148), 1, + sym_expression, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6188] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(507), 1, + anon_sym_LBRACE, + STATE(48), 1, + sym_expression, + STATE(52), 1, + sym_built_in_function, + STATE(74), 1, + sym_function, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(68), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(77), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6276] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(306), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6364] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(226), 21, @@ -12980,7 +13477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(260), 27, + ACTIONS(228), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13008,10 +13505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5851] = 3, + [6420] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(226), 21, + ACTIONS(284), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13033,7 +13530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(260), 27, + ACTIONS(286), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13061,10 +13558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5907] = 3, + [6476] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(298), 21, + ACTIONS(280), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13086,7 +13583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(300), 27, + ACTIONS(282), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13114,10 +13611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5963] = 3, + [6532] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(278), 21, + ACTIONS(252), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13139,7 +13636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(280), 27, + ACTIONS(254), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13167,10 +13664,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6019] = 3, + [6588] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(302), 21, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(314), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6676] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(230), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13192,7 +13758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(304), 27, + ACTIONS(232), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13220,10 +13786,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6075] = 3, + [6732] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(246), 21, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(85), 1, + sym_expression, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6820] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(324), 1, + sym_function, + STATE(326), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6908] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(87), 1, + sym_expression, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [6996] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(88), 1, + sym_expression, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7084] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(284), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(286), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7142] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -13245,7 +14141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(248), 27, + ACTIONS(314), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13273,225 +14169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6131] = 3, + [7198] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(274), 21, - anon_sym_SEMI, + ACTIONS(214), 2, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(276), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6187] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(234), 21, + ACTIONS(210), 19, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(236), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6243] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(294), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(296), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6299] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(282), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(284), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6355] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(210), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, @@ -13538,665 +14223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6411] = 3, + [7256] = 17, ACTIONS(3), 1, sym__comment, - ACTIONS(242), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(244), 27, - anon_sym_async, + ACTIONS(124), 1, sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6467] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(262), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(264), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6523] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(272), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6579] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(214), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(216), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6635] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(254), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(256), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6691] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(290), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(292), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6747] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(306), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(308), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6803] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(238), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(240), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6859] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(242), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(244), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6917] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(222), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(224), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [6975] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(250), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(252), 27, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7031] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(503), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_built_in_function, - STATE(60), 1, - sym_function_expression, - STATE(62), 1, - sym_function, - STATE(314), 1, - sym_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(72), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7116] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, ACTIONS(166), 1, sym_integer, ACTIONS(172), 1, @@ -14205,1710 +14236,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - STATE(87), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7201] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(122), 1, - sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7286] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7371] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(157), 1, - sym_function, - STATE(166), 1, - sym_built_in_function, - STATE(171), 1, - sym_function_expression, - STATE(318), 1, - sym_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(156), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7456] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7541] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - STATE(88), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7626] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(298), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7711] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(305), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7796] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(304), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7881] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_none, - ACTIONS(23), 1, - anon_sym_some, - ACTIONS(505), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_expression, - STATE(49), 1, - sym_built_in_function, - STATE(66), 1, - sym_function, - STATE(376), 1, - sym_function_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(57), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [7966] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(125), 1, - sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8051] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(157), 1, - sym_function, - STATE(166), 1, - sym_built_in_function, - STATE(171), 1, - sym_function_expression, - STATE(313), 1, - sym_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(156), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8136] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8221] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8306] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_none, - ACTIONS(23), 1, - anon_sym_some, - ACTIONS(505), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_expression, - STATE(49), 1, - sym_built_in_function, - STATE(66), 1, - sym_function, - STATE(376), 1, - sym_function_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(57), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8391] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(503), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_built_in_function, - STATE(60), 1, - sym_function_expression, - STATE(62), 1, - sym_function, - STATE(315), 1, - sym_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(72), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8476] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(299), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8561] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(309), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8646] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(297), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8731] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(303), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8816] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(310), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8901] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(302), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [8986] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(300), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9071] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(7), 1, - anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_none, - ACTIONS(23), 1, - anon_sym_some, - ACTIONS(505), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(52), 1, - sym_expression, - STATE(66), 1, - sym_function, - STATE(376), 1, - sym_function_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(57), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9156] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(507), 1, - anon_sym_LPAREN, - STATE(103), 1, - sym_built_in_function, - STATE(108), 1, - sym_function, STATE(109), 1, sym_function_expression, - STATE(316), 1, - sym_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(110), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9241] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, + STATE(110), 1, sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(312), 1, + STATE(335), 1, sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(136), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(176), 4, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(103), 6, sym_identifier, sym_index, + sym_function, + sym__function_expression_kind, sym_function_call, sym_yield, ACTIONS(156), 20, @@ -15932,7 +14290,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9326] = 18, + [7340] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(240), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(242), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7396] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(511), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_built_in_function, + STATE(62), 1, + sym_function_expression, + STATE(333), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(78), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7480] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(316), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7568] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(320), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7656] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(83), 1, + sym_expression, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7744] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(323), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7832] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(322), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [7920] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, @@ -15947,15 +14770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(23), 1, anon_sym_some, - ACTIONS(505), 1, + ACTIONS(507), 1, anon_sym_LBRACE, STATE(44), 1, sym_expression, - STATE(49), 1, + STATE(52), 1, sym_built_in_function, - STATE(66), 1, + STATE(74), 1, sym_function, - STATE(376), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, sym_function_expression, ACTIONS(15), 2, sym_float, @@ -15963,16 +14788,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(57), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(67), 4, + STATE(64), 4, sym__expression_kind, sym_value, sym_math, sym_logic, + STATE(68), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, STATE(77), 4, sym_identifier, sym_index, @@ -15999,53 +14824,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9411] = 18, + [8008] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(124), 1, + ACTIONS(5), 1, sym__identifier_pattern, - ACTIONS(126), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(132), 1, + ACTIONS(13), 1, sym_integer, - ACTIONS(138), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(140), 1, + ACTIONS(21), 1, anon_sym_none, - ACTIONS(142), 1, + ACTIONS(23), 1, anon_sym_some, - ACTIONS(336), 1, + ACTIONS(507), 1, anon_sym_LBRACE, - STATE(142), 1, + STATE(46), 1, sym_expression, - STATE(166), 1, + STATE(52), 1, sym_built_in_function, - STATE(175), 1, + STATE(74), 1, sym_function, - STATE(361), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, sym_function_expression, - ACTIONS(134), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(136), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, + STATE(64), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(167), 4, + STATE(68), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(176), 4, + STATE(77), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(156), 20, + ACTIONS(37), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16066,7 +14893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9496] = 18, + [8096] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -16081,104 +14908,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - STATE(86), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9581] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(336), 1, - anon_sym_LBRACE, - ACTIONS(507), 1, - anon_sym_LPAREN, - STATE(103), 1, - sym_built_in_function, - STATE(108), 1, + STATE(170), 1, sym_function, - STATE(109), 1, - sym_function_expression, STATE(317), 1, sym_expression, - ACTIONS(134), 2, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(136), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(110), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16200,52 +14962,987 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9666] = 18, + [8184] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(124), 1, + ACTIONS(5), 1, sym__identifier_pattern, - ACTIONS(126), 1, + ACTIONS(7), 1, anon_sym_LPAREN, - ACTIONS(132), 1, + ACTIONS(13), 1, sym_integer, - ACTIONS(138), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(140), 1, + ACTIONS(21), 1, anon_sym_none, - ACTIONS(142), 1, + ACTIONS(23), 1, anon_sym_some, - ACTIONS(336), 1, + ACTIONS(507), 1, anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(311), 1, + STATE(50), 1, sym_expression, - STATE(361), 1, + STATE(52), 1, + sym_built_in_function, + STATE(74), 1, + sym_function, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, sym_function_expression, - ACTIONS(134), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(136), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, + STATE(64), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(167), 4, + STATE(68), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(176), 4, + STATE(77), 4, sym_identifier, sym_index, sym_function_call, sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8272] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(288), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(290), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8328] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(296), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(298), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8384] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(194), 1, + sym_function_expression, + STATE(340), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(171), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8468] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(304), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(306), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8524] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(300), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(302), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8580] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(507), 1, + anon_sym_LBRACE, + STATE(52), 1, + sym_built_in_function, + STATE(53), 1, + sym_expression, + STATE(74), 1, + sym_function, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(68), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(77), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8668] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(507), 1, + anon_sym_LBRACE, + STATE(51), 1, + sym_expression, + STATE(52), 1, + sym_built_in_function, + STATE(74), 1, + sym_function, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(68), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(77), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8756] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(511), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_built_in_function, + STATE(62), 1, + sym_function_expression, + STATE(341), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(78), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8840] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(308), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(310), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8896] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(262), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [8952] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(308), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9040] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(7), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(507), 1, + anon_sym_LBRACE, + STATE(47), 1, + sym_expression, + STATE(52), 1, + sym_built_in_function, + STATE(74), 1, + sym_function, + STATE(78), 1, + sym__function_expression_kind, + STATE(394), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(68), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(77), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9128] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(319), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9216] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(310), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9304] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(509), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym_function_expression, + STATE(110), 1, + sym_built_in_function, + STATE(337), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(103), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16267,164 +15964,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9751] = 18, + [9388] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(158), 1, + ACTIONS(124), 1, sym__identifier_pattern, - ACTIONS(160), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(166), 1, + ACTIONS(132), 1, sym_integer, - ACTIONS(172), 1, + ACTIONS(138), 1, anon_sym_LBRACK, - ACTIONS(174), 1, + ACTIONS(140), 1, anon_sym_none, - ACTIONS(176), 1, + ACTIONS(142), 1, anon_sym_some, - ACTIONS(429), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, - sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9836] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(158), 1, - sym__identifier_pattern, - ACTIONS(160), 1, - anon_sym_LPAREN, - ACTIONS(166), 1, - sym_integer, - ACTIONS(172), 1, - anon_sym_LBRACK, - ACTIONS(174), 1, - anon_sym_none, - ACTIONS(176), 1, - anon_sym_some, - ACTIONS(429), 1, + ACTIONS(419), 1, anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, STATE(84), 1, sym_expression, - STATE(92), 1, + STATE(90), 1, sym_function, - STATE(103), 1, + STATE(110), 1, sym_built_in_function, - STATE(362), 1, - sym_function_expression, - ACTIONS(168), 2, - sym_float, - sym_string, - ACTIONS(170), 2, - anon_sym_true, - anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(186), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [9921] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(301), 1, - sym_expression, - STATE(361), 1, + STATE(391), 1, sym_function_expression, ACTIONS(134), 2, sym_float, @@ -16432,21 +15997,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16468,7 +16033,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10006] = 18, + [9476] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(124), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(132), 1, + sym_integer, + ACTIONS(138), 1, + anon_sym_LBRACK, + ACTIONS(140), 1, + anon_sym_none, + ACTIONS(142), 1, + anon_sym_some, + ACTIONS(419), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(81), 1, + sym_expression, + STATE(90), 1, + sym_function, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, + sym_function_expression, + ACTIONS(134), 2, + sym_float, + sym_string, + ACTIONS(136), 2, + anon_sym_true, + anon_sym_false, + STATE(92), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + ACTIONS(156), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9564] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(158), 1, @@ -16483,15 +16117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(176), 1, anon_sym_some, - ACTIONS(429), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - STATE(81), 1, - sym_expression, - STATE(92), 1, - sym_function, - STATE(103), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, sym_built_in_function, - STATE(362), 1, + STATE(324), 1, + sym_function, + STATE(328), 1, + sym_expression, + STATE(398), 1, sym_function_expression, ACTIONS(168), 2, sym_float, @@ -16499,21 +16135,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(91), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(93), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(107), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16535,53 +16171,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10091] = 18, + [9652] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, + ACTIONS(248), 21, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, - sym_function, - STATE(296), 1, - sym_expression, - STATE(361), 1, - sym_function_expression, - ACTIONS(134), 2, - sym_float, - sym_string, - ACTIONS(136), 2, - anon_sym_true, - anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(156), 20, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(250), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16602,53 +16224,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10176] = 18, + [9708] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(7), 1, + ACTIONS(272), 21, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(13), 1, - sym_integer, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_none, - ACTIONS(23), 1, - anon_sym_some, - ACTIONS(505), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(54), 1, - sym_expression, - STATE(66), 1, - sym_function, - STATE(376), 1, - sym_function_expression, - ACTIONS(15), 2, - sym_float, - sym_string, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(57), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(37), 20, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(274), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16669,53 +16277,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10261] = 18, + [9764] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, + ACTIONS(158), 1, sym__identifier_pattern, - ACTIONS(7), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(13), 1, + ACTIONS(166), 1, sym_integer, - ACTIONS(19), 1, + ACTIONS(172), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(174), 1, anon_sym_none, - ACTIONS(23), 1, + ACTIONS(176), 1, anon_sym_some, - ACTIONS(505), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - STATE(45), 1, - sym_expression, - STATE(49), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, sym_built_in_function, - STATE(66), 1, + STATE(170), 1, sym_function, - STATE(376), 1, + STATE(219), 1, + sym_expression, + STATE(398), 1, sym_function_expression, - ACTIONS(15), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(17), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(57), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, + STATE(172), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(37), 20, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16736,53 +16346,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10346] = 18, + [9852] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(124), 1, - sym__identifier_pattern, - ACTIONS(126), 1, + ACTIONS(236), 21, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(132), 1, - sym_integer, - ACTIONS(138), 1, - anon_sym_LBRACK, - ACTIONS(140), 1, - anon_sym_none, - ACTIONS(142), 1, - anon_sym_some, - ACTIONS(336), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(166), 1, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(238), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9908] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(266), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [9964] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, sym_built_in_function, - STATE(175), 1, + STATE(170), 1, sym_function, STATE(307), 1, sym_expression, - STATE(361), 1, + STATE(398), 1, sym_function_expression, - ACTIONS(134), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(136), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(167), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(176), 4, + STATE(172), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(156), 20, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16803,7 +16521,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10431] = 18, + [10052] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(321), 1, + sym_expression, + STATE(324), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [10140] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(294), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [10196] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(313), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [10284] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(244), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(246), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [10340] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(278), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [10396] = 19, ACTIONS(3), 1, sym__comment, ACTIONS(124), 1, @@ -16818,15 +16833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, ACTIONS(142), 1, anon_sym_some, - ACTIONS(336), 1, + ACTIONS(419), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(86), 1, sym_expression, - STATE(166), 1, - sym_built_in_function, - STATE(175), 1, + STATE(90), 1, sym_function, - STATE(361), 1, + STATE(110), 1, + sym_built_in_function, + STATE(391), 1, sym_function_expression, ACTIONS(134), 2, sym_float, @@ -16834,21 +16851,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(136), 2, anon_sym_true, anon_sym_false, - STATE(162), 4, + STATE(92), 4, sym__expression_kind, sym_value, sym_math, sym_logic, - STATE(167), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(176), 4, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, + STATE(112), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, ACTIONS(156), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16870,53 +16887,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10516] = 18, + [10484] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(5), 1, + ACTIONS(158), 1, sym__identifier_pattern, - ACTIONS(7), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(13), 1, + ACTIONS(166), 1, sym_integer, - ACTIONS(19), 1, + ACTIONS(172), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(174), 1, anon_sym_none, - ACTIONS(23), 1, + ACTIONS(176), 1, anon_sym_some, - ACTIONS(505), 1, + ACTIONS(340), 1, anon_sym_LBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(51), 1, + STATE(78), 1, + sym__function_expression_kind, + STATE(149), 1, sym_expression, - STATE(66), 1, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, sym_function, - STATE(376), 1, + STATE(398), 1, sym_function_expression, - ACTIONS(15), 2, + ACTIONS(168), 2, sym_float, sym_string, - ACTIONS(17), 2, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - STATE(57), 4, + STATE(161), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(67), 4, - sym__expression_kind, - sym_value, - sym_math, - sym_logic, - STATE(77), 4, + STATE(172), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(37), 20, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16937,41 +16956,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10601] = 7, + [10572] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(513), 1, - anon_sym_elseif, - ACTIONS(515), 1, - anon_sym_else, - STATE(233), 1, - sym_else, - STATE(221), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(509), 9, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(147), 1, + sym_expression, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(511), 32, - anon_sym_async, - sym__identifier_pattern, - sym_integer, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16992,82 +17025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10663] = 7, + [10660] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(513), 1, - anon_sym_elseif, - ACTIONS(515), 1, - anon_sym_else, - STATE(240), 1, - sym_else, - STATE(223), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(517), 9, - ts_builtin_sym_end, + ACTIONS(256), 21, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(519), 32, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [10725] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - ACTIONS(230), 1, - anon_sym_LT, - STATE(30), 1, - sym_assignment_operator, - STATE(338), 1, - sym_type_definition, - ACTIONS(232), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(222), 14, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -17077,113 +17046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DASH_GT, - ACTIONS(224), 24, - sym__identifier_pattern, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_GT, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [10790] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(525), 1, - anon_sym_elseif, - STATE(223), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(521), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(523), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [10847] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_EQ, - STATE(36), 1, - sym_assignment_operator, - ACTIONS(232), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(222), 14, - anon_sym_SEMI, - 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_EQ_GT, anon_sym_DASH_GT, - ACTIONS(224), 25, + ACTIONS(258), 27, + anon_sym_async, sym__identifier_pattern, + anon_sym_EQ, anon_sym_PLUS, anon_sym_DASH, anon_sym_GT, @@ -17208,34 +17078,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10907] = 3, + [10716] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(302), 10, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(222), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(304), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -17256,279 +17147,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10958] = 3, + [10804] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(528), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(530), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11009] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(246), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(248), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11060] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(532), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(534), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11111] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(278), 10, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_asyncfor, - ACTIONS(280), 33, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11162] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(334), 1, - anon_sym_SEMI, - ACTIONS(483), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - ACTIONS(310), 2, + ACTIONS(188), 17, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 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(312), 21, - sym__identifier_pattern, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11229] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(536), 9, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(538), 32, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(190), 27, anon_sym_async, sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -17549,32 +17204,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11278] = 3, + [10868] = 19, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 9, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(318), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, sym_float, sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(542), 32, - anon_sym_async, - sym__identifier_pattern, - sym_integer, + ACTIONS(170), 2, anon_sym_true, anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -17595,9 +17273,593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11327] = 3, + [10956] = 19, ACTIONS(3), 1, sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(324), 1, + sym_function, + STATE(330), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(329), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11044] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(200), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_EQ_GT, + ACTIONS(202), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11108] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(226), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11196] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(332), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11284] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(270), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11340] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(196), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + 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, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(198), 27, + anon_sym_async, + sym__identifier_pattern, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11400] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(194), 1, + sym_function_expression, + STATE(339), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(171), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11484] = 17, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_built_in_function, + STATE(194), 1, + sym_function_expression, + STATE(338), 1, + sym_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(171), 6, + sym_identifier, + sym_index, + sym_function, + sym__function_expression_kind, + sym_function_call, + sym_yield, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11568] = 19, + ACTIONS(3), 1, + sym__comment, + ACTIONS(158), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(166), 1, + sym_integer, + ACTIONS(172), 1, + anon_sym_LBRACK, + ACTIONS(174), 1, + anon_sym_none, + ACTIONS(176), 1, + anon_sym_some, + ACTIONS(340), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym__function_expression_kind, + STATE(160), 1, + sym_built_in_function, + STATE(170), 1, + sym_function, + STATE(309), 1, + sym_expression, + STATE(398), 1, + sym_function_expression, + ACTIONS(168), 2, + sym_float, + sym_string, + ACTIONS(170), 2, + anon_sym_true, + anon_sym_false, + STATE(161), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(172), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(225), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(186), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11656] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(521), 1, + anon_sym_elseif, + ACTIONS(523), 1, + anon_sym_else, + STATE(254), 1, + sym_else, + STATE(231), 2, + sym_else_if, + aux_sym_if_else_repeat1, ACTIONS(517), 9, ts_builtin_sym_end, anon_sym_SEMI, @@ -17641,7 +17903,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11376] = 3, + [11718] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(521), 1, + anon_sym_elseif, + ACTIONS(523), 1, + anon_sym_else, + STATE(246), 1, + sym_else, + STATE(232), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(525), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(527), 32, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11780] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(533), 1, + anon_sym_elseif, + STATE(232), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(529), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(531), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11837] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 1, + anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_EQ, + ACTIONS(218), 1, + anon_sym_LT, + STATE(41), 1, + sym_assignment_operator, + STATE(364), 1, + sym_type_definition, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(210), 14, + anon_sym_SEMI, + 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_DASH_GT, + ACTIONS(212), 24, + sym__identifier_pattern, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11902] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 1, + anon_sym_LPAREN, + ACTIONS(216), 1, + anon_sym_EQ, + STATE(42), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(210), 14, + anon_sym_SEMI, + 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_DASH_GT, + ACTIONS(212), 25, + sym__identifier_pattern, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [11962] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(536), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(538), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12013] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(292), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(294), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12064] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(308), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(310), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12115] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(238), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12166] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(540), 10, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_asyncfor, + ACTIONS(542), 33, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12217] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(544), 9, @@ -17687,7 +18405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11425] = 3, + [12266] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(548), 9, @@ -17733,54 +18451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11474] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 1, - anon_sym_SEMI, - ACTIONS(310), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_asyncfor, - ACTIONS(312), 32, - anon_sym_async, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_return, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11525] = 3, + [12315] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(552), 9, @@ -17826,7 +18497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11574] = 3, + [12364] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(556), 9, @@ -17872,7 +18543,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11623] = 3, + [12413] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(316), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(318), 32, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12462] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(560), 9, @@ -17918,7 +18635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11672] = 3, + [12511] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(564), 9, @@ -17964,61 +18681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11721] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(310), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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(312), 21, - sym__identifier_pattern, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [11786] = 3, + [12560] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(568), 9, @@ -18064,7 +18727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11835] = 3, + [12609] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(572), 9, @@ -18110,10 +18773,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11884] = 3, + [12658] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(310), 9, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(318), 21, + sym__identifier_pattern, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12723] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(320), 1, + anon_sym_SEMI, + ACTIONS(316), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(318), 32, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12774] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(576), 9, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, @@ -18123,7 +18887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(312), 32, + ACTIONS(578), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -18156,35 +18920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11933] = 7, + [12823] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(576), 1, - anon_sym_elseif, - ACTIONS(578), 1, - anon_sym_else, - STATE(254), 1, - sym_else, - STATE(246), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(509), 9, + ACTIONS(580), 9, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(511), 26, + anon_sym_asyncfor, + ACTIONS(582), 32, + anon_sym_async, sym__identifier_pattern, sym_integer, anon_sym_true, anon_sym_false, anon_sym_none, anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -18205,16 +18966,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11989] = 7, + [12872] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(576), 1, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(346), 1, + anon_sym_SEMI, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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(318), 21, + sym__identifier_pattern, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12939] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(525), 9, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(527), 32, + anon_sym_async, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_return, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [12988] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(584), 1, anon_sym_elseif, - ACTIONS(578), 1, + ACTIONS(586), 1, anon_sym_else, - STATE(262), 1, + STATE(269), 1, sym_else, - STATE(247), 2, + STATE(256), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(517), 9, @@ -18254,15 +19116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12045] = 5, + [13044] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(580), 1, + ACTIONS(584), 1, anon_sym_elseif, - STATE(247), 2, + ACTIONS(586), 1, + anon_sym_else, + STATE(270), 1, + sym_else, + STATE(257), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(521), 9, + ACTIONS(525), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18272,7 +19138,52 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(523), 27, + ACTIONS(527), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13100] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(588), 1, + anon_sym_elseif, + STATE(257), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(529), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(531), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18300,17 +19211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12096] = 3, + [13151] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(585), 6, + ACTIONS(593), 6, anon_sym_LPAREN, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, anon_sym_asyncfor, - ACTIONS(583), 32, + ACTIONS(591), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -18343,10 +19254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12142] = 3, + [13197] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(278), 10, + ACTIONS(308), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18357,7 +19268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(280), 27, + ACTIONS(310), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18385,10 +19296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12187] = 3, + [13242] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(532), 10, + ACTIONS(536), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18399,7 +19310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(534), 27, + ACTIONS(538), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18427,10 +19338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12232] = 3, + [13287] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(302), 10, + ACTIONS(540), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18441,7 +19352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(304), 27, + ACTIONS(542), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18469,10 +19380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12277] = 3, + [13332] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(246), 10, + ACTIONS(292), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18483,7 +19394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(248), 27, + ACTIONS(294), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18511,10 +19422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12322] = 3, + [13377] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(528), 10, + ACTIONS(236), 10, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18525,7 +19436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_STAR, anon_sym_elseif, - ACTIONS(530), 27, + ACTIONS(238), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18553,10 +19464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12367] = 3, + [13422] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(517), 9, + ACTIONS(576), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18566,7 +19477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(519), 26, + ACTIONS(578), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18593,10 +19504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12410] = 3, + [13465] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(572), 9, + ACTIONS(316), 9, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_COMMA, @@ -18606,7 +19517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(574), 26, + ACTIONS(318), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -18633,368 +19544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12453] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(310), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(312), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12496] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(536), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(538), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12539] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(548), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(550), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12582] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(552), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(554), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12625] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(540), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(542), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12668] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(568), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(570), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12711] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(564), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(566), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12754] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(560), 9, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(562), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12797] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(334), 1, - anon_sym_SEMI, - ACTIONS(310), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_STAR, - ACTIONS(312), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [12842] = 3, + [13508] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(544), 9, @@ -19034,7 +19584,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12885] = 3, + [13551] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(574), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13594] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(568), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(570), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13637] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(525), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(527), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13680] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(564), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(566), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13723] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(548), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(550), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13766] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(552), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(554), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13809] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(556), 9, @@ -19074,12 +19864,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12928] = 4, + [13852] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(591), 1, + ACTIONS(560), 9, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(589), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(562), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13895] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(580), 9, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(582), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13938] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(346), 1, + anon_sym_SEMI, + ACTIONS(316), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(318), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [13983] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(599), 1, + anon_sym_COMMA, + ACTIONS(597), 7, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -19087,7 +19998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(587), 26, + ACTIONS(595), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -19114,10 +20025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12972] = 3, + [14027] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(595), 7, + ACTIONS(603), 7, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -19125,116 +20036,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string, anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(593), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13013] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(418), 6, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(597), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13053] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(439), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - ACTIONS(599), 26, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13093] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(603), 5, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, ACTIONS(601), 26, sym__identifier_pattern, sym_integer, @@ -19262,15 +20063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13132] = 3, + [14068] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(607), 5, + ACTIONS(482), 6, anon_sym_LPAREN, anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, + anon_sym_RBRACK, ACTIONS(605), 26, sym__identifier_pattern, sym_integer, @@ -19298,23 +20100,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13171] = 7, + [14108] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(576), 1, + ACTIONS(391), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(607), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14148] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(611), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(609), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14187] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(615), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(613), 26, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14226] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(584), 1, anon_sym_elseif, - ACTIONS(609), 1, + ACTIONS(617), 1, anon_sym_else, - STATE(254), 1, + STATE(270), 1, sym_else, - STATE(274), 2, + STATE(257), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(509), 3, + ACTIONS(525), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(511), 21, + ACTIONS(527), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -19336,16 +20247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13216] = 7, + [14271] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(576), 1, + ACTIONS(584), 1, anon_sym_elseif, - ACTIONS(609), 1, + ACTIONS(617), 1, anon_sym_else, - STATE(262), 1, + STATE(269), 1, sym_else, - STATE(247), 2, + STATE(283), 2, sym_else_if, aux_sym_if_else_repeat1, ACTIONS(517), 3, @@ -19374,17 +20285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13261] = 3, + [14316] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(613), 6, + ACTIONS(621), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(611), 22, + ACTIONS(619), 22, anon_sym_async, sym__identifier_pattern, anon_sym_assert, @@ -19407,54 +20318,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13297] = 7, + [14352] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(615), 1, - sym__identifier_pattern, - ACTIONS(618), 1, - anon_sym_RPAREN, - STATE(49), 1, - sym_built_in_function, - STATE(276), 1, - aux_sym_function_repeat1, - STATE(358), 1, - sym_identifier, - ACTIONS(620), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13338] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, ACTIONS(623), 1, + sym__identifier_pattern, + ACTIONS(626), 1, anon_sym_RBRACE, - STATE(49), 1, + STATE(52), 1, sym_built_in_function, - STATE(279), 1, + STATE(286), 1, aux_sym_map_repeat1, - STATE(349), 1, + STATE(372), 1, sym_identifier, - ACTIONS(37), 20, + ACTIONS(628), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -19475,402 +20352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13379] = 7, + [14393] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, - ACTIONS(625), 1, + ACTIONS(631), 1, anon_sym_RPAREN, - STATE(49), 1, + STATE(52), 1, sym_built_in_function, - STATE(276), 1, + STATE(288), 1, aux_sym_function_repeat1, - STATE(358), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13420] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(627), 1, - sym__identifier_pattern, - ACTIONS(630), 1, - anon_sym_RBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(279), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(632), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13461] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(635), 1, - anon_sym_RPAREN, - STATE(49), 1, - sym_built_in_function, - STATE(276), 1, - aux_sym_function_repeat1, - STATE(358), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13502] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(637), 1, - anon_sym_RBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(279), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13543] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(639), 1, - anon_sym_RPAREN, - STATE(49), 1, - sym_built_in_function, - STATE(276), 1, - aux_sym_function_repeat1, - STATE(358), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13584] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(641), 1, - anon_sym_RBRACE, - STATE(49), 1, - sym_built_in_function, - STATE(279), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13625] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, - STATE(283), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13663] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, - STATE(281), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13701] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, - STATE(277), 1, - aux_sym_map_repeat1, - STATE(349), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13739] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, - STATE(367), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13774] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(645), 1, - anon_sym_COMMA, - ACTIONS(647), 1, - anon_sym_RBRACE, - ACTIONS(643), 21, - sym__identifier_pattern, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13807] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, - STATE(374), 1, - sym_identifier, - ACTIONS(37), 20, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_bash, - anon_sym_download, - anon_sym_either_or, - anon_sym_fish, - anon_sym_from_json, - anon_sym_is_none, - anon_sym_is_some, - anon_sym_length, - anon_sym_metadata, - anon_sym_output, - anon_sym_output_error, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_read, - anon_sym_to_json, - anon_sym_write, - [13842] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - STATE(49), 1, - sym_built_in_function, STATE(375), 1, sym_identifier, ACTIONS(37), 20, @@ -19894,15 +20386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13877] = 4, + [14434] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(618), 1, + ACTIONS(633), 1, + sym__identifier_pattern, + ACTIONS(636), 1, anon_sym_RPAREN, - ACTIONS(651), 1, - anon_sym_COMMA, - ACTIONS(649), 21, - sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(288), 1, + aux_sym_function_repeat1, + STATE(375), 1, + sym_identifier, + ACTIONS(638), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -19923,15 +20420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13910] = 4, + [14475] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(655), 1, - anon_sym_COMMA, - ACTIONS(657), 1, - anon_sym_RBRACE, - ACTIONS(653), 21, + ACTIONS(5), 1, sym__identifier_pattern, + ACTIONS(641), 1, + anon_sym_RBRACE, + STATE(52), 1, + sym_built_in_function, + STATE(286), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -19952,12 +20454,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13943] = 3, + [14516] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(661), 1, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(643), 1, anon_sym_RBRACE, - ACTIONS(659), 21, + STATE(52), 1, + sym_built_in_function, + STATE(286), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14557] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(645), 1, + anon_sym_RPAREN, + STATE(52), 1, + sym_built_in_function, + STATE(288), 1, + aux_sym_function_repeat1, + STATE(375), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14598] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(647), 1, + anon_sym_RBRACE, + STATE(52), 1, + sym_built_in_function, + STATE(286), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14639] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(649), 1, + anon_sym_RPAREN, + STATE(52), 1, + sym_built_in_function, + STATE(288), 1, + aux_sym_function_repeat1, + STATE(375), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14680] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(292), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14718] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(289), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14756] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(290), 1, + aux_sym_map_repeat1, + STATE(372), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14794] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(636), 1, + anon_sym_RPAREN, + ACTIONS(653), 1, + anon_sym_COMMA, + ACTIONS(651), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -19979,12 +20715,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13973] = 3, + [14827] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(390), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14862] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(657), 1, + anon_sym_COMMA, + ACTIONS(659), 1, anon_sym_RBRACE, - ACTIONS(653), 21, + ACTIONS(655), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -20006,12 +20774,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [14003] = 3, + [14895] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(404), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14930] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(663), 1, + anon_sym_COMMA, + ACTIONS(665), 1, + anon_sym_RBRACE, + ACTIONS(661), 21, + sym__identifier_pattern, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14963] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(52), 1, + sym_built_in_function, + STATE(387), 1, + sym_identifier, + ACTIONS(37), 20, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [14998] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(669), 1, + anon_sym_RBRACE, + ACTIONS(667), 21, + sym__identifier_pattern, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [15028] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(673), 1, + anon_sym_RPAREN, + ACTIONS(671), 21, + sym__identifier_pattern, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_bash, + anon_sym_download, + anon_sym_either_or, + anon_sym_fish, + anon_sym_from_json, + anon_sym_is_none, + anon_sym_is_some, + anon_sym_length, + anon_sym_metadata, + anon_sym_output, + anon_sym_output_error, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_read, + anon_sym_to_json, + anon_sym_write, + [15058] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(665), 1, - anon_sym_RPAREN, - ACTIONS(663), 21, + anon_sym_RBRACE, + ACTIONS(661), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -20033,751 +20944,1084 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [14033] = 12, + [15088] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(483), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(667), 1, - anon_sym_async, - ACTIONS(669), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(266), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14079] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(667), 1, - anon_sym_async, - ACTIONS(669), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(258), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14125] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(671), 1, - anon_sym_async, - ACTIONS(673), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(266), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14171] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(671), 1, - anon_sym_async, - ACTIONS(673), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(258), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14217] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, ACTIONS(675), 1, anon_sym_async, ACTIONS(677), 1, anon_sym_LBRACE, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - STATE(238), 1, + STATE(261), 1, sym_block, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14263] = 12, + [15134] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(483), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, ACTIONS(679), 1, anon_sym_async, ACTIONS(681), 1, anon_sym_LBRACE, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - STATE(228), 1, + STATE(239), 1, sym_block, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14309] = 12, + [15180] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(675), 1, - anon_sym_async, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(191), 1, + STATE(197), 1, sym_math_operator, - STATE(192), 1, + STATE(198), 1, + sym_logic_operator, + ACTIONS(206), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(204), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + 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, + [15212] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + STATE(252), 1, + sym_block, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15258] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(687), 1, + anon_sym_COLON, + ACTIONS(689), 1, + anon_sym_DASH_GT, + STATE(197), 1, + sym_math_operator, + STATE(198), 1, + sym_logic_operator, + ACTIONS(202), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(200), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + 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, + [15294] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + STATE(274), 1, + sym_block, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15340] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(197), 1, + sym_math_operator, + STATE(198), 1, + sym_logic_operator, + ACTIONS(198), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + 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, + [15372] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + STATE(274), 1, + sym_block, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15418] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + STATE(275), 1, + sym_block, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15464] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + STATE(245), 1, + sym_block, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15510] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(679), 1, + anon_sym_async, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, sym_logic_operator, STATE(235), 1, sym_block, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14355] = 12, + [15556] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(483), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_async, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - STATE(253), 1, + STATE(260), 1, sym_block, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14401] = 12, + [15602] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(483), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(683), 1, - anon_sym_async, - ACTIONS(685), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(250), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14447] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(679), 1, - anon_sym_async, - ACTIONS(681), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - STATE(226), 1, - sym_block, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14493] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(230), 1, - anon_sym_LT, - STATE(291), 1, - sym_type_definition, - ACTIONS(224), 2, - anon_sym_DASH, - anon_sym_GT, - ACTIONS(222), 13, - anon_sym_RPAREN, - 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, - [14525] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(687), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14565] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(689), 1, - anon_sym_EQ_GT, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14605] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(691), 1, - anon_sym_RPAREN, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14645] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, - ACTIONS(693), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14685] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, ACTIONS(695), 1, - anon_sym_RPAREN, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(320), 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, - [14725] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, - anon_sym_COLON, - ACTIONS(485), 1, - anon_sym_DASH_GT, + anon_sym_async, ACTIONS(697), 1, - anon_sym_RPAREN, - STATE(191), 1, + anon_sym_LBRACE, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - ACTIONS(322), 2, + STATE(275), 1, + sym_block, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14765] = 9, + [15648] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, - anon_sym_DASH, - ACTIONS(483), 1, + ACTIONS(687), 1, anon_sym_COLON, - ACTIONS(485), 1, + ACTIONS(689), 1, anon_sym_DASH_GT, - STATE(191), 1, + STATE(197), 1, sym_math_operator, - STATE(192), 1, + STATE(198), 1, sym_logic_operator, - ACTIONS(322), 2, + ACTIONS(190), 3, + anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(188), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 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, - [14802] = 9, + [15684] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(699), 1, + anon_sym_DOT_DOT, + STATE(197), 1, + sym_math_operator, + STATE(198), 1, + sym_logic_operator, + ACTIONS(206), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(204), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [15718] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(198), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [15749] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(202), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(200), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [15784] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(190), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(188), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, + [15819] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 1, + anon_sym_LPAREN, + ACTIONS(286), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(284), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + 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, + [15847] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(218), 1, - anon_sym_COLON, - ACTIONS(220), 1, - anon_sym_DASH_GT, - ACTIONS(318), 1, - anon_sym_DASH, - STATE(191), 1, - sym_math_operator, - STATE(192), 1, - sym_logic_operator, - ACTIONS(322), 2, - anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + STATE(297), 1, + sym_type_definition, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(214), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(210), 12, + anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 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, - [14839] = 9, + anon_sym_DASH_GT, + [15879] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(202), 1, - anon_sym_COLON, - ACTIONS(204), 1, - anon_sym_DASH_GT, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - STATE(191), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + ACTIONS(705), 1, + anon_sym_RPAREN, + STATE(179), 1, sym_math_operator, - STATE(192), 1, + STATE(180), 1, sym_logic_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14876] = 9, + [15919] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(326), 1, + ACTIONS(513), 1, anon_sym_COLON, - ACTIONS(328), 1, + ACTIONS(515), 1, anon_sym_DASH_GT, - STATE(191), 1, + ACTIONS(707), 1, + anon_sym_LBRACE, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14913] = 9, + [15959] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + ACTIONS(709), 1, + anon_sym_RPAREN, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [15999] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 1, + anon_sym_LPAREN, + ACTIONS(212), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + 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, + [16027] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + ACTIONS(711), 1, + anon_sym_RPAREN, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16067] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(713), 1, + anon_sym_EQ_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16107] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, + anon_sym_DASH_GT, + ACTIONS(715), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16147] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(192), 1, + anon_sym_COLON, + ACTIONS(194), 1, + anon_sym_DASH_GT, + ACTIONS(324), 1, + anon_sym_DASH, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16184] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + STATE(179), 1, + sym_math_operator, + STATE(180), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16221] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16258] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(703), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16295] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, anon_sym_DASH, ACTIONS(330), 1, anon_sym_COLON, ACTIONS(332), 1, anon_sym_DASH_GT, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14950] = 9, + [16332] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(318), 1, + ACTIONS(324), 1, anon_sym_DASH, - ACTIONS(354), 1, + ACTIONS(687), 1, anon_sym_COLON, - ACTIONS(356), 1, + ACTIONS(689), 1, anon_sym_DASH_GT, - STATE(191), 1, + STATE(205), 1, sym_math_operator, - STATE(192), 1, + STATE(218), 1, sym_logic_operator, - ACTIONS(322), 2, + ACTIONS(328), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 4, + ACTIONS(322), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(320), 6, + ACTIONS(326), 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, - [14987] = 3, + [16369] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(701), 1, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(513), 1, + anon_sym_COLON, + ACTIONS(515), 1, anon_sym_DASH_GT, - ACTIONS(699), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [15011] = 4, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16406] = 9, ACTIONS(3), 1, sym__comment, - ACTIONS(703), 1, + ACTIONS(324), 1, + anon_sym_DASH, + ACTIONS(499), 1, + anon_sym_COLON, + ACTIONS(501), 1, + anon_sym_DASH_GT, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16443] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_COLON, + ACTIONS(224), 1, + anon_sym_DASH_GT, + ACTIONS(324), 1, + anon_sym_DASH, + STATE(205), 1, + sym_math_operator, + STATE(218), 1, + sym_logic_operator, + ACTIONS(328), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(326), 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, + [16480] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(717), 1, anon_sym_RPAREN, - ACTIONS(276), 3, + ACTIONS(270), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(274), 12, + ACTIONS(268), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, @@ -20790,16 +22034,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [15037] = 4, + [16506] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(705), 1, + ACTIONS(721), 1, + anon_sym_DASH_GT, + ACTIONS(719), 15, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(276), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_none, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [16530] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(725), 1, + anon_sym_DASH_GT, + ACTIONS(723), 15, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_none, + anon_sym_GT, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [16554] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(727), 1, + anon_sym_RPAREN, + ACTIONS(270), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(274), 12, + ACTIONS(268), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, @@ -20812,37 +22098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [15063] = 3, + [16580] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(709), 1, - anon_sym_DASH_GT, - ACTIONS(707), 15, - anon_sym_LPAREN, + ACTIONS(729), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_GT, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [15087] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(711), 1, - anon_sym_RPAREN, - ACTIONS(276), 3, + ACTIONS(270), 3, anon_sym_DASH, anon_sym_GT, anon_sym_LT, - ACTIONS(274), 12, + ACTIONS(268), 12, anon_sym_COLON, anon_sym_PLUS, anon_sym_STAR, @@ -20855,10 +22120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DASH_GT, - [15113] = 2, + [16606] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(713), 15, + ACTIONS(731), 15, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -20874,10 +22139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [15134] = 2, + [16627] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(699), 15, + ACTIONS(733), 15, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -20893,10 +22158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [15155] = 2, + [16648] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(715), 15, + ACTIONS(723), 15, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -20912,10 +22177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [15176] = 2, + [16669] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(717), 15, + ACTIONS(735), 15, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -20931,22 +22196,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [15197] = 8, + [16690] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(719), 1, + ACTIONS(737), 1, anon_sym_LPAREN, - ACTIONS(722), 1, + ACTIONS(740), 1, anon_sym_RPAREN, - ACTIONS(724), 1, + ACTIONS(742), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(748), 1, anon_sym_option, - STATE(328), 1, + STATE(351), 1, aux_sym_type_repeat1, - STATE(331), 1, + STATE(354), 1, sym_type, - ACTIONS(727), 8, + ACTIONS(745), 8, anon_sym_none, anon_sym_any, anon_sym_bool, @@ -20955,468 +22220,489 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [15229] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(735), 1, - anon_sym_RPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(330), 1, - aux_sym_type_repeat1, - STATE(331), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15261] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - ACTIONS(743), 1, - anon_sym_RPAREN, - STATE(328), 1, - aux_sym_type_repeat1, - STATE(331), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15293] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(747), 1, - anon_sym_COMMA, - ACTIONS(745), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [15314] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(373), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15340] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(722), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - anon_sym_option, - [15358] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(326), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15384] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(368), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15410] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(327), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15436] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - ACTIONS(737), 1, - anon_sym_LBRACK, - ACTIONS(741), 1, - anon_sym_option, - STATE(359), 1, - sym_type, - ACTIONS(739), 8, - anon_sym_none, - anon_sym_any, - anon_sym_bool, - anon_sym_float, - anon_sym_int, - anon_sym_map, - anon_sym_num, - anon_sym_str, - [15462] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(27), 1, - sym_assignment_operator, - ACTIONS(232), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [15474] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(31), 1, - sym_assignment_operator, - ACTIONS(232), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [15486] = 3, - ACTIONS(3), 1, - sym__comment, - STATE(29), 1, - sym_assignment_operator, - ACTIONS(232), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [15498] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(749), 1, - anon_sym_EQ, - STATE(29), 1, - sym_assignment_operator, - ACTIONS(232), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [15512] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(667), 1, - anon_sym_async, - ACTIONS(669), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_block, - [15525] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(671), 1, - anon_sym_async, - ACTIONS(673), 1, - anon_sym_LBRACE, - STATE(89), 1, - sym_block, - [15538] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(675), 1, - anon_sym_async, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(242), 1, - sym_block, - [15551] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(667), 1, - anon_sym_async, - ACTIONS(669), 1, - anon_sym_LBRACE, - STATE(261), 1, - sym_block, - [15564] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(671), 1, - anon_sym_async, - ACTIONS(673), 1, - anon_sym_LBRACE, - STATE(97), 1, - sym_block, - [15577] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(675), 1, - anon_sym_async, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_block, - [15590] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(667), 1, - anon_sym_async, - ACTIONS(669), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_block, - [15603] = 4, + [16722] = 8, ACTIONS(3), 1, sym__comment, ACTIONS(751), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(753), 1, - anon_sym_LT, - STATE(365), 1, - sym_type_definition, - [15616] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(671), 1, - anon_sym_async, - ACTIONS(673), 1, - anon_sym_LBRACE, - STATE(261), 1, - sym_block, - [15629] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(675), 1, - anon_sym_async, - ACTIONS(677), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_block, - [15642] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(343), 1, - sym_type_definition, - [15652] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(342), 1, - sym_type_definition, - [15662] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(348), 1, - sym_type_definition, - [15672] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(346), 1, - sym_type_definition, - [15682] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(347), 1, - sym_type_definition, - [15692] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(351), 1, - sym_type_definition, - [15702] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(753), 1, - anon_sym_LT, - STATE(291), 1, - sym_type_definition, - [15712] = 2, - ACTIONS(3), 1, - sym__comment, + anon_sym_RPAREN, ACTIONS(755), 1, - anon_sym_GT, - [15719] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(757), 1, - anon_sym_LBRACE, - [15726] = 2, - ACTIONS(3), 1, - sym__comment, + anon_sym_LBRACK, ACTIONS(759), 1, - anon_sym_LPAREN, - [15733] = 2, + anon_sym_option, + STATE(353), 1, + aux_sym_type_repeat1, + STATE(354), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16754] = 8, ACTIONS(3), 1, sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, ACTIONS(761), 1, - anon_sym_LPAREN, - [15740] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(763), 1, - anon_sym_LBRACE, - [15747] = 2, + anon_sym_RPAREN, + STATE(351), 1, + aux_sym_type_repeat1, + STATE(354), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16786] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(765), 1, + anon_sym_COMMA, + ACTIONS(763), 12, anon_sym_LPAREN, - [15754] = 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [16807] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, + STATE(402), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16833] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, + STATE(348), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16859] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, + STATE(388), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16885] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(740), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + anon_sym_option, + [16903] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, + STATE(393), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16929] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(751), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_option, + STATE(350), 1, + sym_type, + ACTIONS(757), 8, + anon_sym_none, + anon_sym_any, + anon_sym_bool, + anon_sym_float, + anon_sym_int, + anon_sym_map, + anon_sym_num, + anon_sym_str, + [16955] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(43), 1, + sym_assignment_operator, + ACTIONS(220), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [16967] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(767), 1, anon_sym_EQ, - [15761] = 2, + STATE(36), 1, + sym_assignment_operator, + ACTIONS(220), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [16981] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(689), 1, - anon_sym_EQ_GT, - [15768] = 2, + STATE(36), 1, + sym_assignment_operator, + ACTIONS(220), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [16993] = 3, + ACTIONS(3), 1, + sym__comment, + STATE(39), 1, + sym_assignment_operator, + ACTIONS(220), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [17005] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(204), 1, + sym_block, + [17018] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_block, + [17031] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(108), 1, + sym_block, + [17044] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(65), 1, + sym_block, + [17057] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_block, + [17070] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_block, + [17083] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(683), 1, + anon_sym_async, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(66), 1, + sym_block, + [17096] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(769), 1, - anon_sym_in, - [15775] = 2, + anon_sym_EQ, + ACTIONS(771), 1, + anon_sym_LT, + STATE(396), 1, + sym_type_definition, + [17109] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_async, + ACTIONS(697), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_block, + [17122] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(691), 1, + anon_sym_async, + ACTIONS(693), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_block, + [17135] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(771), 1, - anon_sym_RBRACK, - [15782] = 2, + anon_sym_LT, + STATE(297), 1, + sym_type_definition, + [17145] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(773), 1, - anon_sym_LBRACE, - [15789] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(775), 1, - anon_sym_LBRACE, - [15796] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(777), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - [15803] = 2, + ACTIONS(773), 1, + anon_sym_RPAREN, + [17155] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(775), 1, + anon_sym_RPAREN, + [17165] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(369), 1, + sym_type_definition, + [17175] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(365), 1, + sym_type_definition, + [17185] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_RPAREN, + [17195] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(368), 1, + sym_type_definition, + [17205] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(367), 1, + sym_type_definition, + [17215] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(373), 1, + sym_type_definition, + [17225] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LT, + STATE(371), 1, + sym_type_definition, + [17235] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(779), 1, - anon_sym_LBRACE, - [15810] = 2, + anon_sym_LPAREN, + [17242] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(781), 1, - anon_sym_RPAREN, - [15817] = 2, + anon_sym_LBRACE, + [17249] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(783), 1, anon_sym_in, - [15824] = 2, + [17256] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(785), 1, - anon_sym_in, - [15831] = 2, + anon_sym_GT, + [17263] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(787), 1, - anon_sym_LPAREN, - [15838] = 2, + anon_sym_LBRACE, + [17270] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(789), 1, - anon_sym_LPAREN, - [15845] = 2, + anon_sym_in, + [17277] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(791), 1, - ts_builtin_sym_end, - [15852] = 2, + anon_sym_LPAREN, + [17284] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(793), 1, + anon_sym_LBRACE, + [17291] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(795), 1, + anon_sym_RPAREN, + [17298] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(797), 1, + anon_sym_LPAREN, + [17305] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(799), 1, + anon_sym_LPAREN, + [17312] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(801), 1, + anon_sym_EQ, + [17319] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(803), 1, + anon_sym_LBRACE, + [17326] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(805), 1, + anon_sym_LPAREN, + [17333] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(713), 1, + anon_sym_EQ_GT, + [17340] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(807), 1, + anon_sym_LBRACE, + [17347] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(809), 1, + anon_sym_LPAREN, + [17354] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(811), 1, + anon_sym_RBRACK, + [17361] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(813), 1, + ts_builtin_sym_end, + [17368] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(815), 1, + anon_sym_in, + [17375] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(817), 1, anon_sym_LPAREN, }; @@ -21424,31 +22710,31 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(79)] = 0, [SMALL_STATE(80)] = 84, [SMALL_STATE(81)] = 166, - [SMALL_STATE(82)] = 235, - [SMALL_STATE(83)] = 306, + [SMALL_STATE(82)] = 239, + [SMALL_STATE(83)] = 308, [SMALL_STATE(84)] = 379, [SMALL_STATE(85)] = 452, [SMALL_STATE(86)] = 521, - [SMALL_STATE(87)] = 593, - [SMALL_STATE(88)] = 665, + [SMALL_STATE(87)] = 589, + [SMALL_STATE(88)] = 661, [SMALL_STATE(89)] = 733, [SMALL_STATE(90)] = 796, - [SMALL_STATE(91)] = 859, + [SMALL_STATE(91)] = 861, [SMALL_STATE(92)] = 924, - [SMALL_STATE(93)] = 989, - [SMALL_STATE(94)] = 1052, - [SMALL_STATE(95)] = 1115, - [SMALL_STATE(96)] = 1178, - [SMALL_STATE(97)] = 1241, - [SMALL_STATE(98)] = 1304, - [SMALL_STATE(99)] = 1367, - [SMALL_STATE(100)] = 1430, - [SMALL_STATE(101)] = 1493, - [SMALL_STATE(102)] = 1556, - [SMALL_STATE(103)] = 1619, - [SMALL_STATE(104)] = 1682, - [SMALL_STATE(105)] = 1745, - [SMALL_STATE(106)] = 1808, + [SMALL_STATE(93)] = 987, + [SMALL_STATE(94)] = 1050, + [SMALL_STATE(95)] = 1113, + [SMALL_STATE(96)] = 1176, + [SMALL_STATE(97)] = 1239, + [SMALL_STATE(98)] = 1302, + [SMALL_STATE(99)] = 1365, + [SMALL_STATE(100)] = 1428, + [SMALL_STATE(101)] = 1491, + [SMALL_STATE(102)] = 1554, + [SMALL_STATE(103)] = 1617, + [SMALL_STATE(104)] = 1680, + [SMALL_STATE(105)] = 1743, + [SMALL_STATE(106)] = 1806, [SMALL_STATE(107)] = 1871, [SMALL_STATE(108)] = 1934, [SMALL_STATE(109)] = 1997, @@ -21458,642 +22744,680 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(113)] = 2249, [SMALL_STATE(114)] = 2323, [SMALL_STATE(115)] = 2392, - [SMALL_STATE(116)] = 2467, - [SMALL_STATE(117)] = 2544, - [SMALL_STATE(118)] = 2606, - [SMALL_STATE(119)] = 2700, - [SMALL_STATE(120)] = 2762, - [SMALL_STATE(121)] = 2838, - [SMALL_STATE(122)] = 2914, - [SMALL_STATE(123)] = 2980, - [SMALL_STATE(124)] = 3046, - [SMALL_STATE(125)] = 3140, - [SMALL_STATE(126)] = 3204, - [SMALL_STATE(127)] = 3298, - [SMALL_STATE(128)] = 3389, - [SMALL_STATE(129)] = 3480, - [SMALL_STATE(130)] = 3571, - [SMALL_STATE(131)] = 3662, - [SMALL_STATE(132)] = 3753, - [SMALL_STATE(133)] = 3846, - [SMALL_STATE(134)] = 3939, - [SMALL_STATE(135)] = 4030, - [SMALL_STATE(136)] = 4121, - [SMALL_STATE(137)] = 4214, - [SMALL_STATE(138)] = 4305, - [SMALL_STATE(139)] = 4396, - [SMALL_STATE(140)] = 4487, - [SMALL_STATE(141)] = 4580, - [SMALL_STATE(142)] = 4671, - [SMALL_STATE(143)] = 4732, - [SMALL_STATE(144)] = 4797, - [SMALL_STATE(145)] = 4862, - [SMALL_STATE(146)] = 4953, - [SMALL_STATE(147)] = 5044, - [SMALL_STATE(148)] = 5135, - [SMALL_STATE(149)] = 5226, - [SMALL_STATE(150)] = 5319, - [SMALL_STATE(151)] = 5410, - [SMALL_STATE(152)] = 5501, - [SMALL_STATE(153)] = 5592, - [SMALL_STATE(154)] = 5683, - [SMALL_STATE(155)] = 5739, - [SMALL_STATE(156)] = 5795, - [SMALL_STATE(157)] = 5851, - [SMALL_STATE(158)] = 5907, - [SMALL_STATE(159)] = 5963, - [SMALL_STATE(160)] = 6019, - [SMALL_STATE(161)] = 6075, - [SMALL_STATE(162)] = 6131, - [SMALL_STATE(163)] = 6187, - [SMALL_STATE(164)] = 6243, - [SMALL_STATE(165)] = 6299, - [SMALL_STATE(166)] = 6355, - [SMALL_STATE(167)] = 6411, - [SMALL_STATE(168)] = 6467, - [SMALL_STATE(169)] = 6523, - [SMALL_STATE(170)] = 6579, - [SMALL_STATE(171)] = 6635, - [SMALL_STATE(172)] = 6691, - [SMALL_STATE(173)] = 6747, - [SMALL_STATE(174)] = 6803, - [SMALL_STATE(175)] = 6859, - [SMALL_STATE(176)] = 6917, - [SMALL_STATE(177)] = 6975, - [SMALL_STATE(178)] = 7031, - [SMALL_STATE(179)] = 7116, - [SMALL_STATE(180)] = 7201, - [SMALL_STATE(181)] = 7286, - [SMALL_STATE(182)] = 7371, - [SMALL_STATE(183)] = 7456, - [SMALL_STATE(184)] = 7541, - [SMALL_STATE(185)] = 7626, - [SMALL_STATE(186)] = 7711, - [SMALL_STATE(187)] = 7796, - [SMALL_STATE(188)] = 7881, - [SMALL_STATE(189)] = 7966, - [SMALL_STATE(190)] = 8051, - [SMALL_STATE(191)] = 8136, - [SMALL_STATE(192)] = 8221, - [SMALL_STATE(193)] = 8306, - [SMALL_STATE(194)] = 8391, - [SMALL_STATE(195)] = 8476, - [SMALL_STATE(196)] = 8561, - [SMALL_STATE(197)] = 8646, - [SMALL_STATE(198)] = 8731, - [SMALL_STATE(199)] = 8816, - [SMALL_STATE(200)] = 8901, - [SMALL_STATE(201)] = 8986, - [SMALL_STATE(202)] = 9071, - [SMALL_STATE(203)] = 9156, - [SMALL_STATE(204)] = 9241, - [SMALL_STATE(205)] = 9326, - [SMALL_STATE(206)] = 9411, - [SMALL_STATE(207)] = 9496, - [SMALL_STATE(208)] = 9581, - [SMALL_STATE(209)] = 9666, - [SMALL_STATE(210)] = 9751, - [SMALL_STATE(211)] = 9836, - [SMALL_STATE(212)] = 9921, - [SMALL_STATE(213)] = 10006, - [SMALL_STATE(214)] = 10091, - [SMALL_STATE(215)] = 10176, - [SMALL_STATE(216)] = 10261, - [SMALL_STATE(217)] = 10346, - [SMALL_STATE(218)] = 10431, - [SMALL_STATE(219)] = 10516, - [SMALL_STATE(220)] = 10601, - [SMALL_STATE(221)] = 10663, - [SMALL_STATE(222)] = 10725, - [SMALL_STATE(223)] = 10790, - [SMALL_STATE(224)] = 10847, - [SMALL_STATE(225)] = 10907, - [SMALL_STATE(226)] = 10958, - [SMALL_STATE(227)] = 11009, - [SMALL_STATE(228)] = 11060, - [SMALL_STATE(229)] = 11111, - [SMALL_STATE(230)] = 11162, - [SMALL_STATE(231)] = 11229, - [SMALL_STATE(232)] = 11278, - [SMALL_STATE(233)] = 11327, - [SMALL_STATE(234)] = 11376, - [SMALL_STATE(235)] = 11425, - [SMALL_STATE(236)] = 11474, - [SMALL_STATE(237)] = 11525, - [SMALL_STATE(238)] = 11574, - [SMALL_STATE(239)] = 11623, - [SMALL_STATE(240)] = 11672, - [SMALL_STATE(241)] = 11721, - [SMALL_STATE(242)] = 11786, - [SMALL_STATE(243)] = 11835, - [SMALL_STATE(244)] = 11884, - [SMALL_STATE(245)] = 11933, - [SMALL_STATE(246)] = 11989, - [SMALL_STATE(247)] = 12045, - [SMALL_STATE(248)] = 12096, - [SMALL_STATE(249)] = 12142, - [SMALL_STATE(250)] = 12187, - [SMALL_STATE(251)] = 12232, - [SMALL_STATE(252)] = 12277, - [SMALL_STATE(253)] = 12322, - [SMALL_STATE(254)] = 12367, - [SMALL_STATE(255)] = 12410, - [SMALL_STATE(256)] = 12453, - [SMALL_STATE(257)] = 12496, - [SMALL_STATE(258)] = 12539, - [SMALL_STATE(259)] = 12582, - [SMALL_STATE(260)] = 12625, - [SMALL_STATE(261)] = 12668, - [SMALL_STATE(262)] = 12711, - [SMALL_STATE(263)] = 12754, - [SMALL_STATE(264)] = 12797, - [SMALL_STATE(265)] = 12842, - [SMALL_STATE(266)] = 12885, - [SMALL_STATE(267)] = 12928, - [SMALL_STATE(268)] = 12972, - [SMALL_STATE(269)] = 13013, - [SMALL_STATE(270)] = 13053, - [SMALL_STATE(271)] = 13093, - [SMALL_STATE(272)] = 13132, - [SMALL_STATE(273)] = 13171, - [SMALL_STATE(274)] = 13216, - [SMALL_STATE(275)] = 13261, - [SMALL_STATE(276)] = 13297, - [SMALL_STATE(277)] = 13338, - [SMALL_STATE(278)] = 13379, - [SMALL_STATE(279)] = 13420, - [SMALL_STATE(280)] = 13461, - [SMALL_STATE(281)] = 13502, - [SMALL_STATE(282)] = 13543, - [SMALL_STATE(283)] = 13584, - [SMALL_STATE(284)] = 13625, - [SMALL_STATE(285)] = 13663, - [SMALL_STATE(286)] = 13701, - [SMALL_STATE(287)] = 13739, - [SMALL_STATE(288)] = 13774, - [SMALL_STATE(289)] = 13807, - [SMALL_STATE(290)] = 13842, - [SMALL_STATE(291)] = 13877, - [SMALL_STATE(292)] = 13910, - [SMALL_STATE(293)] = 13943, - [SMALL_STATE(294)] = 13973, - [SMALL_STATE(295)] = 14003, - [SMALL_STATE(296)] = 14033, - [SMALL_STATE(297)] = 14079, - [SMALL_STATE(298)] = 14125, - [SMALL_STATE(299)] = 14171, - [SMALL_STATE(300)] = 14217, - [SMALL_STATE(301)] = 14263, - [SMALL_STATE(302)] = 14309, - [SMALL_STATE(303)] = 14355, - [SMALL_STATE(304)] = 14401, - [SMALL_STATE(305)] = 14447, - [SMALL_STATE(306)] = 14493, - [SMALL_STATE(307)] = 14525, - [SMALL_STATE(308)] = 14565, - [SMALL_STATE(309)] = 14605, - [SMALL_STATE(310)] = 14645, - [SMALL_STATE(311)] = 14685, - [SMALL_STATE(312)] = 14725, - [SMALL_STATE(313)] = 14765, - [SMALL_STATE(314)] = 14802, - [SMALL_STATE(315)] = 14839, - [SMALL_STATE(316)] = 14876, - [SMALL_STATE(317)] = 14913, - [SMALL_STATE(318)] = 14950, - [SMALL_STATE(319)] = 14987, - [SMALL_STATE(320)] = 15011, - [SMALL_STATE(321)] = 15037, - [SMALL_STATE(322)] = 15063, - [SMALL_STATE(323)] = 15087, - [SMALL_STATE(324)] = 15113, - [SMALL_STATE(325)] = 15134, - [SMALL_STATE(326)] = 15155, - [SMALL_STATE(327)] = 15176, - [SMALL_STATE(328)] = 15197, - [SMALL_STATE(329)] = 15229, - [SMALL_STATE(330)] = 15261, - [SMALL_STATE(331)] = 15293, - [SMALL_STATE(332)] = 15314, - [SMALL_STATE(333)] = 15340, - [SMALL_STATE(334)] = 15358, - [SMALL_STATE(335)] = 15384, - [SMALL_STATE(336)] = 15410, - [SMALL_STATE(337)] = 15436, - [SMALL_STATE(338)] = 15462, - [SMALL_STATE(339)] = 15474, - [SMALL_STATE(340)] = 15486, - [SMALL_STATE(341)] = 15498, - [SMALL_STATE(342)] = 15512, - [SMALL_STATE(343)] = 15525, - [SMALL_STATE(344)] = 15538, - [SMALL_STATE(345)] = 15551, - [SMALL_STATE(346)] = 15564, - [SMALL_STATE(347)] = 15577, - [SMALL_STATE(348)] = 15590, - [SMALL_STATE(349)] = 15603, - [SMALL_STATE(350)] = 15616, - [SMALL_STATE(351)] = 15629, - [SMALL_STATE(352)] = 15642, - [SMALL_STATE(353)] = 15652, - [SMALL_STATE(354)] = 15662, - [SMALL_STATE(355)] = 15672, - [SMALL_STATE(356)] = 15682, - [SMALL_STATE(357)] = 15692, - [SMALL_STATE(358)] = 15702, - [SMALL_STATE(359)] = 15712, - [SMALL_STATE(360)] = 15719, - [SMALL_STATE(361)] = 15726, - [SMALL_STATE(362)] = 15733, - [SMALL_STATE(363)] = 15740, - [SMALL_STATE(364)] = 15747, - [SMALL_STATE(365)] = 15754, - [SMALL_STATE(366)] = 15761, - [SMALL_STATE(367)] = 15768, - [SMALL_STATE(368)] = 15775, - [SMALL_STATE(369)] = 15782, - [SMALL_STATE(370)] = 15789, - [SMALL_STATE(371)] = 15796, - [SMALL_STATE(372)] = 15803, - [SMALL_STATE(373)] = 15810, - [SMALL_STATE(374)] = 15817, - [SMALL_STATE(375)] = 15824, - [SMALL_STATE(376)] = 15831, - [SMALL_STATE(377)] = 15838, - [SMALL_STATE(378)] = 15845, - [SMALL_STATE(379)] = 15852, + [SMALL_STATE(116)] = 2489, + [SMALL_STATE(117)] = 2566, + [SMALL_STATE(118)] = 2641, + [SMALL_STATE(119)] = 2738, + [SMALL_STATE(120)] = 2835, + [SMALL_STATE(121)] = 2929, + [SMALL_STATE(122)] = 3023, + [SMALL_STATE(123)] = 3117, + [SMALL_STATE(124)] = 3211, + [SMALL_STATE(125)] = 3307, + [SMALL_STATE(126)] = 3403, + [SMALL_STATE(127)] = 3499, + [SMALL_STATE(128)] = 3595, + [SMALL_STATE(129)] = 3689, + [SMALL_STATE(130)] = 3783, + [SMALL_STATE(131)] = 3859, + [SMALL_STATE(132)] = 3953, + [SMALL_STATE(133)] = 4047, + [SMALL_STATE(134)] = 4141, + [SMALL_STATE(135)] = 4235, + [SMALL_STATE(136)] = 4329, + [SMALL_STATE(137)] = 4423, + [SMALL_STATE(138)] = 4499, + [SMALL_STATE(139)] = 4593, + [SMALL_STATE(140)] = 4687, + [SMALL_STATE(141)] = 4781, + [SMALL_STATE(142)] = 4875, + [SMALL_STATE(143)] = 4971, + [SMALL_STATE(144)] = 5065, + [SMALL_STATE(145)] = 5159, + [SMALL_STATE(146)] = 5253, + [SMALL_STATE(147)] = 5349, + [SMALL_STATE(148)] = 5414, + [SMALL_STATE(149)] = 5475, + [SMALL_STATE(150)] = 5540, + [SMALL_STATE(151)] = 5603, + [SMALL_STATE(152)] = 5664, + [SMALL_STATE(153)] = 5748, + [SMALL_STATE(154)] = 5836, + [SMALL_STATE(155)] = 5924, + [SMALL_STATE(156)] = 6012, + [SMALL_STATE(157)] = 6100, + [SMALL_STATE(158)] = 6188, + [SMALL_STATE(159)] = 6276, + [SMALL_STATE(160)] = 6364, + [SMALL_STATE(161)] = 6420, + [SMALL_STATE(162)] = 6476, + [SMALL_STATE(163)] = 6532, + [SMALL_STATE(164)] = 6588, + [SMALL_STATE(165)] = 6676, + [SMALL_STATE(166)] = 6732, + [SMALL_STATE(167)] = 6820, + [SMALL_STATE(168)] = 6908, + [SMALL_STATE(169)] = 6996, + [SMALL_STATE(170)] = 7084, + [SMALL_STATE(171)] = 7142, + [SMALL_STATE(172)] = 7198, + [SMALL_STATE(173)] = 7256, + [SMALL_STATE(174)] = 7340, + [SMALL_STATE(175)] = 7396, + [SMALL_STATE(176)] = 7480, + [SMALL_STATE(177)] = 7568, + [SMALL_STATE(178)] = 7656, + [SMALL_STATE(179)] = 7744, + [SMALL_STATE(180)] = 7832, + [SMALL_STATE(181)] = 7920, + [SMALL_STATE(182)] = 8008, + [SMALL_STATE(183)] = 8096, + [SMALL_STATE(184)] = 8184, + [SMALL_STATE(185)] = 8272, + [SMALL_STATE(186)] = 8328, + [SMALL_STATE(187)] = 8384, + [SMALL_STATE(188)] = 8468, + [SMALL_STATE(189)] = 8524, + [SMALL_STATE(190)] = 8580, + [SMALL_STATE(191)] = 8668, + [SMALL_STATE(192)] = 8756, + [SMALL_STATE(193)] = 8840, + [SMALL_STATE(194)] = 8896, + [SMALL_STATE(195)] = 8952, + [SMALL_STATE(196)] = 9040, + [SMALL_STATE(197)] = 9128, + [SMALL_STATE(198)] = 9216, + [SMALL_STATE(199)] = 9304, + [SMALL_STATE(200)] = 9388, + [SMALL_STATE(201)] = 9476, + [SMALL_STATE(202)] = 9564, + [SMALL_STATE(203)] = 9652, + [SMALL_STATE(204)] = 9708, + [SMALL_STATE(205)] = 9764, + [SMALL_STATE(206)] = 9852, + [SMALL_STATE(207)] = 9908, + [SMALL_STATE(208)] = 9964, + [SMALL_STATE(209)] = 10052, + [SMALL_STATE(210)] = 10140, + [SMALL_STATE(211)] = 10196, + [SMALL_STATE(212)] = 10284, + [SMALL_STATE(213)] = 10340, + [SMALL_STATE(214)] = 10396, + [SMALL_STATE(215)] = 10484, + [SMALL_STATE(216)] = 10572, + [SMALL_STATE(217)] = 10660, + [SMALL_STATE(218)] = 10716, + [SMALL_STATE(219)] = 10804, + [SMALL_STATE(220)] = 10868, + [SMALL_STATE(221)] = 10956, + [SMALL_STATE(222)] = 11044, + [SMALL_STATE(223)] = 11108, + [SMALL_STATE(224)] = 11196, + [SMALL_STATE(225)] = 11284, + [SMALL_STATE(226)] = 11340, + [SMALL_STATE(227)] = 11400, + [SMALL_STATE(228)] = 11484, + [SMALL_STATE(229)] = 11568, + [SMALL_STATE(230)] = 11656, + [SMALL_STATE(231)] = 11718, + [SMALL_STATE(232)] = 11780, + [SMALL_STATE(233)] = 11837, + [SMALL_STATE(234)] = 11902, + [SMALL_STATE(235)] = 11962, + [SMALL_STATE(236)] = 12013, + [SMALL_STATE(237)] = 12064, + [SMALL_STATE(238)] = 12115, + [SMALL_STATE(239)] = 12166, + [SMALL_STATE(240)] = 12217, + [SMALL_STATE(241)] = 12266, + [SMALL_STATE(242)] = 12315, + [SMALL_STATE(243)] = 12364, + [SMALL_STATE(244)] = 12413, + [SMALL_STATE(245)] = 12462, + [SMALL_STATE(246)] = 12511, + [SMALL_STATE(247)] = 12560, + [SMALL_STATE(248)] = 12609, + [SMALL_STATE(249)] = 12658, + [SMALL_STATE(250)] = 12723, + [SMALL_STATE(251)] = 12774, + [SMALL_STATE(252)] = 12823, + [SMALL_STATE(253)] = 12872, + [SMALL_STATE(254)] = 12939, + [SMALL_STATE(255)] = 12988, + [SMALL_STATE(256)] = 13044, + [SMALL_STATE(257)] = 13100, + [SMALL_STATE(258)] = 13151, + [SMALL_STATE(259)] = 13197, + [SMALL_STATE(260)] = 13242, + [SMALL_STATE(261)] = 13287, + [SMALL_STATE(262)] = 13332, + [SMALL_STATE(263)] = 13377, + [SMALL_STATE(264)] = 13422, + [SMALL_STATE(265)] = 13465, + [SMALL_STATE(266)] = 13508, + [SMALL_STATE(267)] = 13551, + [SMALL_STATE(268)] = 13594, + [SMALL_STATE(269)] = 13637, + [SMALL_STATE(270)] = 13680, + [SMALL_STATE(271)] = 13723, + [SMALL_STATE(272)] = 13766, + [SMALL_STATE(273)] = 13809, + [SMALL_STATE(274)] = 13852, + [SMALL_STATE(275)] = 13895, + [SMALL_STATE(276)] = 13938, + [SMALL_STATE(277)] = 13983, + [SMALL_STATE(278)] = 14027, + [SMALL_STATE(279)] = 14068, + [SMALL_STATE(280)] = 14108, + [SMALL_STATE(281)] = 14148, + [SMALL_STATE(282)] = 14187, + [SMALL_STATE(283)] = 14226, + [SMALL_STATE(284)] = 14271, + [SMALL_STATE(285)] = 14316, + [SMALL_STATE(286)] = 14352, + [SMALL_STATE(287)] = 14393, + [SMALL_STATE(288)] = 14434, + [SMALL_STATE(289)] = 14475, + [SMALL_STATE(290)] = 14516, + [SMALL_STATE(291)] = 14557, + [SMALL_STATE(292)] = 14598, + [SMALL_STATE(293)] = 14639, + [SMALL_STATE(294)] = 14680, + [SMALL_STATE(295)] = 14718, + [SMALL_STATE(296)] = 14756, + [SMALL_STATE(297)] = 14794, + [SMALL_STATE(298)] = 14827, + [SMALL_STATE(299)] = 14862, + [SMALL_STATE(300)] = 14895, + [SMALL_STATE(301)] = 14930, + [SMALL_STATE(302)] = 14963, + [SMALL_STATE(303)] = 14998, + [SMALL_STATE(304)] = 15028, + [SMALL_STATE(305)] = 15058, + [SMALL_STATE(306)] = 15088, + [SMALL_STATE(307)] = 15134, + [SMALL_STATE(308)] = 15180, + [SMALL_STATE(309)] = 15212, + [SMALL_STATE(310)] = 15258, + [SMALL_STATE(311)] = 15294, + [SMALL_STATE(312)] = 15340, + [SMALL_STATE(313)] = 15372, + [SMALL_STATE(314)] = 15418, + [SMALL_STATE(315)] = 15464, + [SMALL_STATE(316)] = 15510, + [SMALL_STATE(317)] = 15556, + [SMALL_STATE(318)] = 15602, + [SMALL_STATE(319)] = 15648, + [SMALL_STATE(320)] = 15684, + [SMALL_STATE(321)] = 15718, + [SMALL_STATE(322)] = 15749, + [SMALL_STATE(323)] = 15784, + [SMALL_STATE(324)] = 15819, + [SMALL_STATE(325)] = 15847, + [SMALL_STATE(326)] = 15879, + [SMALL_STATE(327)] = 15919, + [SMALL_STATE(328)] = 15959, + [SMALL_STATE(329)] = 15999, + [SMALL_STATE(330)] = 16027, + [SMALL_STATE(331)] = 16067, + [SMALL_STATE(332)] = 16107, + [SMALL_STATE(333)] = 16147, + [SMALL_STATE(334)] = 16184, + [SMALL_STATE(335)] = 16221, + [SMALL_STATE(336)] = 16258, + [SMALL_STATE(337)] = 16295, + [SMALL_STATE(338)] = 16332, + [SMALL_STATE(339)] = 16369, + [SMALL_STATE(340)] = 16406, + [SMALL_STATE(341)] = 16443, + [SMALL_STATE(342)] = 16480, + [SMALL_STATE(343)] = 16506, + [SMALL_STATE(344)] = 16530, + [SMALL_STATE(345)] = 16554, + [SMALL_STATE(346)] = 16580, + [SMALL_STATE(347)] = 16606, + [SMALL_STATE(348)] = 16627, + [SMALL_STATE(349)] = 16648, + [SMALL_STATE(350)] = 16669, + [SMALL_STATE(351)] = 16690, + [SMALL_STATE(352)] = 16722, + [SMALL_STATE(353)] = 16754, + [SMALL_STATE(354)] = 16786, + [SMALL_STATE(355)] = 16807, + [SMALL_STATE(356)] = 16833, + [SMALL_STATE(357)] = 16859, + [SMALL_STATE(358)] = 16885, + [SMALL_STATE(359)] = 16903, + [SMALL_STATE(360)] = 16929, + [SMALL_STATE(361)] = 16955, + [SMALL_STATE(362)] = 16967, + [SMALL_STATE(363)] = 16981, + [SMALL_STATE(364)] = 16993, + [SMALL_STATE(365)] = 17005, + [SMALL_STATE(366)] = 17018, + [SMALL_STATE(367)] = 17031, + [SMALL_STATE(368)] = 17044, + [SMALL_STATE(369)] = 17057, + [SMALL_STATE(370)] = 17070, + [SMALL_STATE(371)] = 17083, + [SMALL_STATE(372)] = 17096, + [SMALL_STATE(373)] = 17109, + [SMALL_STATE(374)] = 17122, + [SMALL_STATE(375)] = 17135, + [SMALL_STATE(376)] = 17145, + [SMALL_STATE(377)] = 17155, + [SMALL_STATE(378)] = 17165, + [SMALL_STATE(379)] = 17175, + [SMALL_STATE(380)] = 17185, + [SMALL_STATE(381)] = 17195, + [SMALL_STATE(382)] = 17205, + [SMALL_STATE(383)] = 17215, + [SMALL_STATE(384)] = 17225, + [SMALL_STATE(385)] = 17235, + [SMALL_STATE(386)] = 17242, + [SMALL_STATE(387)] = 17249, + [SMALL_STATE(388)] = 17256, + [SMALL_STATE(389)] = 17263, + [SMALL_STATE(390)] = 17270, + [SMALL_STATE(391)] = 17277, + [SMALL_STATE(392)] = 17284, + [SMALL_STATE(393)] = 17291, + [SMALL_STATE(394)] = 17298, + [SMALL_STATE(395)] = 17305, + [SMALL_STATE(396)] = 17312, + [SMALL_STATE(397)] = 17319, + [SMALL_STATE(398)] = 17326, + [SMALL_STATE(399)] = 17333, + [SMALL_STATE(400)] = 17340, + [SMALL_STATE(401)] = 17347, + [SMALL_STATE(402)] = 17354, + [SMALL_STATE(403)] = 17361, + [SMALL_STATE(404)] = 17368, + [SMALL_STATE(405)] = 17375, }; 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(49), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), [39] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49), - [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(140), - [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(372), + [41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(52), + [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(142), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(400), [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), - [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(57), - [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(57), - [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(63), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(147), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(64), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(379), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(186), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(199), - [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(200), - [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(289), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(289), - [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(42), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(50), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(166), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(136), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(286), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(167), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(167), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(168), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(130), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(154), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(371), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(366), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(170), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(149), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(284), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(107), - [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(107), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(112), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(151), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(111), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(377), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(105), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(149), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(284), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(107), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(107), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(112), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(151), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(111), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(377), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(105), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(212), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(68), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(68), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(67), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(123), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(60), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(405), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(208), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(224), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(229), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(298), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(298), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(31), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_expression_kind, 1), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), + [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(160), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(296), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(161), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(161), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(162), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(143), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(163), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(395), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(399), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(165), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(110), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(127), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(294), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(112), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(112), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(101), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(141), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(104), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(401), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(100), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(110), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(127), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(294), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(112), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(112), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(101), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(141), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(104), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(401), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(100), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(176), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(187), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(49), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(50), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(49), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(50), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 4), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 5), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 3), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(329), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(335), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(324), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(364), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [791] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(183), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(52), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(54), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(52), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(54), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 4), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 5), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 3), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(352), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(355), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(347), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(385), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [813] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), }; #ifdef __cplusplus