diff --git a/examples/clue_solver.ds b/examples/clue_solver.ds index c78f194..15d1a43 100644 --- a/examples/clue_solver.ds +++ b/examples/clue_solver.ds @@ -5,9 +5,9 @@ cards = { } is_ready_to_solve = (cards ) { - length(cards:suspects) == 1 - && length(cards:rooms) == 1 - && length(cards:weapons) == 1 + (length(cards:suspects) == 1) + && (length(cards:rooms) == 1) + && (length(cards:weapons) == 1) } remove_card = (cards , opponent_card ) { @@ -19,7 +19,7 @@ remove_card = (cards , opponent_card ) { make_guess = (cards , current_room ) { if is_ready_to_solve(cards) { output( - 'It was ' + 'I accuse ' + cards:suspects:0 + ' in the ' + cards:rooms:0 @@ -29,7 +29,7 @@ make_guess = (cards , current_room ) { ) } else { output( - 'I accuse ' + 'I question ' + random(cards:suspects) + ' in the ' + current_room diff --git a/examples/jq_data.ds b/examples/jq_data.ds index c42ac4d..3b0d699 100644 --- a/examples/jq_data.ds +++ b/examples/jq_data.ds @@ -1,4 +1,4 @@ -data = (from_json (read 'examples/assets/jq_data.json')) +data = from_json(read('examples/assets/jq_data.json')) new_data = [] diff --git a/tree-sitter-dust/corpus/if_else.txt b/tree-sitter-dust/corpus/if_else.txt index caac6a9..90df962 100644 --- a/tree-sitter-dust/corpus/if_else.txt +++ b/tree-sitter-dust/corpus/if_else.txt @@ -33,28 +33,12 @@ if 1 == 1 && 2 == 2 && 3 == 3 { "True" } (if (expression (logic - (expression - (value - (integer))) - (logic_operator) (expression (logic - (expression - (value - (integer))) - (logic_operator) (expression (logic - (expression - (value - (integer))) - (logic_operator) (expression (logic - (expression - (value - (integer))) - (logic_operator) (expression (logic (expression @@ -63,7 +47,23 @@ if 1 == 1 && 2 == 2 && 3 == 3 { "True" } (logic_operator) (expression (value - (integer))))))))))))) + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) (block (statement (expression diff --git a/tree-sitter-dust/corpus/logic.txt b/tree-sitter-dust/corpus/logic.txt new file mode 100644 index 0000000..3cc09a3 --- /dev/null +++ b/tree-sitter-dust/corpus/logic.txt @@ -0,0 +1,199 @@ +================================================================================ +Simple Logic +================================================================================ + +true && false + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (logic + (expression + (value + (boolean))) + (logic_operator) + (expression + (value + (boolean))))))) + +================================================================================ +Logic Sequence +================================================================================ + +1 == 2 || false + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (logic + (expression + (logic + (expression + (value + (integer))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (boolean))))))) + +================================================================================ +Complex Logic Sequence +================================================================================ + +(length(suspects) == 1) +&& (length(rooms) == 1) +&& (length(weapons) == 1) + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (logic + (expression + (logic + (expression + (logic + (expression + (function_call + (function_expression + (identifier + (built_in_function))) + (expression + (identifier)))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (logic + (expression + (function_call + (function_expression + (identifier + (built_in_function))) + (expression + (identifier)))) + (logic_operator) + (expression + (value + (integer))))))) + (logic_operator) + (expression + (logic + (expression + (function_call + (function_expression + (identifier + (built_in_function))) + (expression + (identifier)))) + (logic_operator) + (expression + (value + (integer))))))))) + +================================================================================ +\== +================================================================================ + +3 == 1 + 1 + 1 + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (math + (expression + (math + (expression + (logic + (expression + (value + (integer))) + (logic_operator) + (expression + (value + (integer))))) + (math_operator) + (expression + (value + (integer))))) + (math_operator) + (expression + (value + (integer))))))) + +================================================================================ +&& +================================================================================ + +4 + 2 == 42 && true + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (logic + (expression + (logic + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (boolean))))))) + +================================================================================ +\|| +================================================================================ + +4 + 2 == 42 || true + +-------------------------------------------------------------------------------- + +(root + (statement + (expression + (logic + (expression + (logic + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (boolean))))))) diff --git a/tree-sitter-dust/corpus/operators.txt b/tree-sitter-dust/corpus/operators.txt deleted file mode 100644 index cad16f9..0000000 --- a/tree-sitter-dust/corpus/operators.txt +++ /dev/null @@ -1,95 +0,0 @@ -================================================================================ -\== -================================================================================ - -3 == 1 + 1 + 1 - --------------------------------------------------------------------------------- - -(root - (statement - (expression - (logic - (expression - (value - (integer))) - (logic_operator) - (expression - (math - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))) - (math_operator) - (expression - (value - (integer))))))))) - -================================================================================ -&& -================================================================================ - -4 + 2 == 42 && true - --------------------------------------------------------------------------------- - -(root - (statement - (expression - (logic - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))) - (logic_operator) - (expression - (logic - (expression - (value - (integer))) - (logic_operator) - (expression - (value - (boolean))))))))) - -================================================================================ -\|| -================================================================================ - -4 + 2 == 42 || true - --------------------------------------------------------------------------------- - -(root - (statement - (expression - (logic - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))) - (logic_operator) - (expression - (logic - (expression - (value - (integer))) - (logic_operator) - (expression - (value - (boolean))))))))) diff --git a/tree-sitter-dust/corpus/statements.txt b/tree-sitter-dust/corpus/statements.txt index d6ef4d9..006a2cd 100644 --- a/tree-sitter-dust/corpus/statements.txt +++ b/tree-sitter-dust/corpus/statements.txt @@ -110,23 +110,23 @@ x = 3 == 1 + 2 + 2 (assignment_operator) (statement (expression - (logic - (expression - (value - (integer))) - (logic_operator) + (math (expression (math (expression - (math + (logic (expression (value (integer))) - (math_operator) + (logic_operator) (expression (value (integer))))) (math_operator) (expression (value - (integer))))))))))) + (integer))))) + (math_operator) + (expression + (value + (integer))))))))) diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 7457456..a676627 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -38,6 +38,16 @@ module.exports = grammar({ ), expression: $ => + choice( + $._expression_kind, + seq( + '(', + $._expression_kind, + ')', + ), + ), + + _expression_kind: $ => prec.right( choice( $.function_call, @@ -214,7 +224,7 @@ module.exports = grammar({ choice('+', '-', '*', '/', '%'), logic: $ => - prec.right( + prec.left( seq( $.expression, $.logic_operator, diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index 7b7a021..a096e2b 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -112,6 +112,32 @@ } }, "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_kind" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression_kind" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "_expression_kind": { "type": "PREC_RIGHT", "value": 0, "content": { @@ -660,7 +686,7 @@ ] }, "logic": { - "type": "PREC_RIGHT", + "type": "PREC_LEFT", "value": 0, "content": { "type": "SEQ", diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 34752c6..ff184b7 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 361 -#define LARGE_STATE_COUNT 78 -#define SYMBOL_COUNT 117 +#define STATE_COUNT 379 +#define LARGE_STATE_COUNT 76 +#define SYMBOL_COUNT 118 #define ALIAS_COUNT 0 #define TOKEN_COUNT 76 #define EXTERNAL_TOKEN_COUNT 0 @@ -23,19 +23,19 @@ enum { anon_sym_LBRACE = 4, anon_sym_RBRACE = 5, anon_sym_SEMI = 6, - anon_sym_COMMA = 7, - sym_integer = 8, - sym_float = 9, - sym_string = 10, - anon_sym_true = 11, - anon_sym_false = 12, - anon_sym_LBRACK = 13, - anon_sym_RBRACK = 14, - anon_sym_EQ = 15, - anon_sym_none = 16, - anon_sym_some = 17, - anon_sym_LPAREN = 18, - anon_sym_RPAREN = 19, + anon_sym_LPAREN = 7, + anon_sym_RPAREN = 8, + anon_sym_COMMA = 9, + sym_integer = 10, + sym_float = 11, + sym_string = 12, + anon_sym_true = 13, + anon_sym_false = 14, + anon_sym_LBRACK = 15, + anon_sym_RBRACK = 16, + anon_sym_EQ = 17, + anon_sym_none = 18, + anon_sym_some = 19, anon_sym_COLON = 20, anon_sym_DOT_DOT = 21, anon_sym_PLUS = 22, @@ -96,43 +96,44 @@ enum { sym_block = 77, sym_statement = 78, sym_expression = 79, - aux_sym__expression_list = 80, - sym_identifier = 81, - sym_value = 82, - sym_boolean = 83, - sym_list = 84, - sym_map = 85, - sym_option = 86, - sym_index = 87, - sym_math = 88, - sym_math_operator = 89, - sym_logic = 90, - sym_logic_operator = 91, - sym_assignment = 92, - sym_index_assignment = 93, - sym_assignment_operator = 94, - sym_if_else = 95, - sym_if = 96, - sym_else_if = 97, - sym_else = 98, - sym_match = 99, - sym_while = 100, - sym_for = 101, - sym_return = 102, - sym_type_definition = 103, - sym_type = 104, - sym_function = 105, - sym_function_expression = 106, - sym_function_call = 107, - sym_yield = 108, - sym_built_in_function = 109, - aux_sym_root_repeat1 = 110, - aux_sym_list_repeat1 = 111, - aux_sym_map_repeat1 = 112, - aux_sym_if_else_repeat1 = 113, - aux_sym_match_repeat1 = 114, - aux_sym_type_repeat1 = 115, - aux_sym_function_repeat1 = 116, + sym__expression_kind = 80, + aux_sym__expression_list = 81, + sym_identifier = 82, + sym_value = 83, + sym_boolean = 84, + sym_list = 85, + sym_map = 86, + sym_option = 87, + sym_index = 88, + sym_math = 89, + sym_math_operator = 90, + sym_logic = 91, + sym_logic_operator = 92, + sym_assignment = 93, + sym_index_assignment = 94, + sym_assignment_operator = 95, + sym_if_else = 96, + sym_if = 97, + sym_else_if = 98, + sym_else = 99, + sym_match = 100, + sym_while = 101, + sym_for = 102, + sym_return = 103, + sym_type_definition = 104, + 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, }; static const char * const ts_symbol_names[] = { @@ -143,6 +144,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", [anon_sym_SEMI] = ";", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", [anon_sym_COMMA] = ",", [sym_integer] = "integer", [sym_float] = "float", @@ -154,8 +157,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [anon_sym_none] = "none", [anon_sym_some] = "some", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", [anon_sym_COLON] = ":", [anon_sym_DOT_DOT] = "..", [anon_sym_PLUS] = "+", @@ -216,6 +217,7 @@ static const char * const ts_symbol_names[] = { [sym_block] = "block", [sym_statement] = "statement", [sym_expression] = "expression", + [sym__expression_kind] = "_expression_kind", [aux_sym__expression_list] = "_expression_list", [sym_identifier] = "identifier", [sym_value] = "value", @@ -263,6 +265,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_COMMA] = anon_sym_COMMA, [sym_integer] = sym_integer, [sym_float] = sym_float, @@ -274,8 +278,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ] = anon_sym_EQ, [anon_sym_none] = anon_sym_none, [anon_sym_some] = anon_sym_some, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_PLUS] = anon_sym_PLUS, @@ -336,6 +338,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_block] = sym_block, [sym_statement] = sym_statement, [sym_expression] = sym_expression, + [sym__expression_kind] = sym__expression_kind, [aux_sym__expression_list] = aux_sym__expression_list, [sym_identifier] = sym_identifier, [sym_value] = sym_value, @@ -404,6 +407,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_COMMA] = { .visible = true, .named = false, @@ -448,14 +459,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -696,6 +699,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__expression_kind] = { + .visible = false, + .named = true, + }, [aux_sym__expression_list] = { .visible = false, .named = false, @@ -858,53 +865,53 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, - [5] = 2, + [3] = 3, + [4] = 3, + [5] = 3, [6] = 6, - [7] = 7, - [8] = 7, - [9] = 6, - [10] = 6, - [11] = 7, - [12] = 12, - [13] = 7, + [7] = 6, + [8] = 6, + [9] = 9, + [10] = 9, + [11] = 11, + [12] = 9, + [13] = 6, [14] = 6, - [15] = 6, - [16] = 7, + [15] = 9, + [16] = 9, [17] = 17, - [18] = 17, - [19] = 19, - [20] = 17, - [21] = 19, - [22] = 19, - [23] = 19, - [24] = 17, + [18] = 18, + [19] = 17, + [20] = 18, + [21] = 17, + [22] = 17, + [23] = 18, + [24] = 18, [25] = 17, - [26] = 19, + [26] = 18, [27] = 27, [28] = 28, - [29] = 29, + [29] = 28, [30] = 30, - [31] = 31, - [32] = 32, + [31] = 27, + [32] = 28, [33] = 33, - [34] = 34, - [35] = 27, - [36] = 33, - [37] = 33, - [38] = 27, - [39] = 28, - [40] = 28, + [34] = 33, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 33, + [39] = 27, + [40] = 40, [41] = 41, - [42] = 41, - [43] = 43, + [42] = 42, + [43] = 41, [44] = 44, [45] = 45, - [46] = 45, - [47] = 43, - [48] = 44, - [49] = 49, + [46] = 46, + [47] = 44, + [48] = 45, + [49] = 42, [50] = 50, [51] = 51, [52] = 52, @@ -914,12 +921,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 59, - [60] = 60, + [59] = 53, + [60] = 57, [61] = 61, [62] = 62, - [63] = 62, - [64] = 57, + [63] = 63, + [64] = 64, [65] = 65, [66] = 66, [67] = 67, @@ -931,291 +938,309 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [73] = 73, [74] = 74, [75] = 75, - [76] = 75, + [76] = 76, [77] = 77, - [78] = 43, - [79] = 45, - [80] = 44, + [78] = 77, + [79] = 41, + [80] = 42, [81] = 41, - [82] = 41, - [83] = 43, - [84] = 45, + [82] = 45, + [83] = 44, + [84] = 42, [85] = 44, - [86] = 58, - [87] = 72, - [88] = 71, - [89] = 68, - [90] = 62, + [86] = 45, + [87] = 71, + [88] = 69, + [89] = 74, + [90] = 57, [91] = 53, - [92] = 60, - [93] = 50, - [94] = 49, - [95] = 69, - [96] = 74, - [97] = 66, - [98] = 67, - [99] = 57, - [100] = 73, - [101] = 52, - [102] = 70, - [103] = 54, - [104] = 62, - [105] = 57, - [106] = 59, - [107] = 56, - [108] = 55, - [109] = 51, - [110] = 61, - [111] = 75, - [112] = 75, - [113] = 77, - [114] = 114, - [115] = 44, + [92] = 66, + [93] = 73, + [94] = 75, + [95] = 46, + [96] = 64, + [97] = 52, + [98] = 63, + [99] = 70, + [100] = 50, + [101] = 62, + [102] = 72, + [103] = 67, + [104] = 56, + [105] = 53, + [106] = 57, + [107] = 54, + [108] = 61, + [109] = 55, + [110] = 58, + [111] = 51, + [112] = 68, + [113] = 76, + [114] = 77, + [115] = 77, [116] = 116, - [117] = 41, - [118] = 43, - [119] = 41, - [120] = 45, + [117] = 117, + [118] = 41, + [119] = 42, + [120] = 117, [121] = 121, - [122] = 122, - [123] = 44, - [124] = 43, - [125] = 45, - [126] = 121, - [127] = 52, + [122] = 41, + [123] = 45, + [124] = 124, + [125] = 44, + [126] = 126, + [127] = 127, [128] = 128, [129] = 129, - [130] = 130, + [130] = 129, [131] = 131, - [132] = 129, - [133] = 66, - [134] = 69, - [135] = 58, - [136] = 57, - [137] = 128, - [138] = 131, - [139] = 139, - [140] = 140, - [141] = 139, - [142] = 62, - [143] = 67, - [144] = 140, - [145] = 60, - [146] = 49, - [147] = 54, - [148] = 68, - [149] = 139, - [150] = 70, - [151] = 74, - [152] = 50, - [153] = 131, - [154] = 73, - [155] = 72, - [156] = 62, - [157] = 157, - [158] = 53, - [159] = 157, - [160] = 140, - [161] = 59, - [162] = 128, - [163] = 57, - [164] = 56, - [165] = 55, - [166] = 166, - [167] = 129, - [168] = 71, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 170, - [174] = 174, - [175] = 171, - [176] = 176, - [177] = 172, + [132] = 132, + [133] = 132, + [134] = 134, + [135] = 126, + [136] = 136, + [137] = 129, + [138] = 138, + [139] = 128, + [140] = 126, + [141] = 128, + [142] = 128, + [143] = 134, + [144] = 134, + [145] = 44, + [146] = 45, + [147] = 128, + [148] = 42, + [149] = 136, + [150] = 136, + [151] = 138, + [152] = 132, + [153] = 58, + [154] = 71, + [155] = 46, + [156] = 75, + [157] = 73, + [158] = 66, + [159] = 57, + [160] = 50, + [161] = 53, + [162] = 55, + [163] = 52, + [164] = 64, + [165] = 63, + [166] = 72, + [167] = 53, + [168] = 57, + [169] = 54, + [170] = 69, + [171] = 61, + [172] = 56, + [173] = 62, + [174] = 67, + [175] = 70, + [176] = 74, + [177] = 177, [178] = 178, - [179] = 176, - [180] = 174, + [179] = 179, + [180] = 180, [181] = 181, - [182] = 182, - [183] = 170, - [184] = 172, - [185] = 185, - [186] = 178, - [187] = 174, - [188] = 181, - [189] = 171, - [190] = 190, - [191] = 191, - [192] = 190, - [193] = 174, - [194] = 174, - [195] = 170, - [196] = 176, - [197] = 172, - [198] = 171, + [182] = 178, + [183] = 183, + [184] = 180, + [185] = 181, + [186] = 186, + [187] = 186, + [188] = 188, + [189] = 189, + [190] = 180, + [191] = 178, + [192] = 178, + [193] = 193, + [194] = 179, + [195] = 189, + [196] = 196, + [197] = 181, + [198] = 177, [199] = 199, - [200] = 178, - [201] = 201, - [202] = 191, - [203] = 191, - [204] = 182, - [205] = 174, - [206] = 172, - [207] = 171, - [208] = 170, + [200] = 183, + [201] = 180, + [202] = 183, + [203] = 178, + [204] = 199, + [205] = 183, + [206] = 178, + [207] = 193, + [208] = 189, [209] = 199, - [210] = 169, - [211] = 170, - [212] = 171, - [213] = 172, - [214] = 214, - [215] = 51, - [216] = 61, - [217] = 58, - [218] = 218, - [219] = 67, - [220] = 220, - [221] = 221, + [210] = 196, + [211] = 181, + [212] = 181, + [213] = 180, + [214] = 183, + [215] = 196, + [216] = 181, + [217] = 177, + [218] = 188, + [219] = 186, + [220] = 180, + [221] = 183, [222] = 222, - [223] = 77, - [224] = 224, + [223] = 223, + [224] = 51, [225] = 225, - [226] = 226, - [227] = 75, - [228] = 228, - [229] = 229, + [226] = 68, + [227] = 227, + [228] = 55, + [229] = 52, [230] = 230, - [231] = 75, + [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 232, - [236] = 201, - [237] = 185, - [238] = 214, + [233] = 76, + [234] = 77, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, [239] = 239, - [240] = 67, - [241] = 58, - [242] = 220, - [243] = 218, - [244] = 229, - [245] = 228, - [246] = 232, - [247] = 234, - [248] = 221, - [249] = 222, - [250] = 233, - [251] = 230, - [252] = 224, - [253] = 226, - [254] = 232, - [255] = 225, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, + [240] = 77, + [241] = 236, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 222, + [247] = 223, + [248] = 225, + [249] = 249, + [250] = 230, + [251] = 55, + [252] = 227, + [253] = 52, + [254] = 243, + [255] = 242, + [256] = 237, + [257] = 236, + [258] = 236, + [259] = 232, + [260] = 231, + [261] = 245, + [262] = 238, + [263] = 235, + [264] = 244, + [265] = 239, [266] = 266, - [267] = 263, + [267] = 267, [268] = 268, - [269] = 263, - [270] = 268, - [271] = 268, - [272] = 272, - [273] = 266, - [274] = 266, - [275] = 272, - [276] = 272, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 222, + [273] = 223, + [274] = 274, + [275] = 275, + [276] = 276, [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 278, + [278] = 277, + [279] = 275, + [280] = 275, + [281] = 281, [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, + [283] = 276, + [284] = 276, + [285] = 277, [286] = 286, [287] = 287, - [288] = 288, + [288] = 286, [289] = 286, - [290] = 287, - [291] = 288, - [292] = 285, + [290] = 290, + [291] = 291, + [292] = 292, [293] = 293, - [294] = 293, + [294] = 294, [295] = 295, [296] = 296, - [297] = 295, - [298] = 293, - [299] = 299, - [300] = 299, - [301] = 299, - [302] = 299, - [303] = 299, - [304] = 299, + [297] = 297, + [298] = 296, + [299] = 296, + [300] = 300, + [301] = 295, + [302] = 297, + [303] = 295, + [304] = 300, [305] = 305, [306] = 306, [307] = 307, - [308] = 308, - [309] = 309, + [308] = 305, + [309] = 306, [310] = 310, - [311] = 311, + [311] = 305, [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, + [313] = 312, + [314] = 312, + [315] = 312, + [316] = 312, + [317] = 312, [318] = 318, - [319] = 319, + [319] = 318, [320] = 320, - [321] = 321, + [321] = 318, [322] = 322, - [323] = 322, - [324] = 322, + [323] = 323, + [324] = 324, [325] = 325, - [326] = 325, + [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 325, - [331] = 327, - [332] = 327, - [333] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 335, - [338] = 336, - [339] = 336, - [340] = 335, + [337] = 337, + [338] = 338, + [339] = 338, + [340] = 338, [341] = 341, [342] = 342, - [343] = 342, + [343] = 343, [344] = 344, - [345] = 345, - [346] = 342, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, + [345] = 342, + [346] = 341, + [347] = 341, + [348] = 343, + [349] = 343, + [350] = 342, [351] = 351, - [352] = 347, - [353] = 341, - [354] = 348, + [352] = 352, + [353] = 352, + [354] = 351, [355] = 355, - [356] = 356, - [357] = 341, - [358] = 341, - [359] = 348, - [360] = 341, + [356] = 351, + [357] = 352, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 360, + [366] = 361, + [367] = 361, + [368] = 359, + [369] = 360, + [370] = 359, + [371] = 362, + [372] = 359, + [373] = 359, + [374] = 362, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1230,25 +1255,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(51); - if (lookahead == ')') ADVANCE(52); + if (lookahead == '(') ADVANCE(32); + if (lookahead == ')') ADVANCE(33); if (lookahead == '*') ADVANCE(60); if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(32); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); if (lookahead == ':') ADVANCE(53); if (lookahead == ';') ADVANCE(31); if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(50); + if (lookahead == '=') ADVANCE(52); if (lookahead == '>') ADVANCE(68); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); + if (lookahead == '[') ADVANCE(49); + if (lookahead == ']') ADVANCE(50); if (lookahead == '`') ADVANCE(15); - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'e') ADVANCE(40); if (lookahead == '{') ADVANCE(29); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(30); @@ -1257,7 +1282,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(0) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 1: if (lookahead == '!') ADVANCE(11); @@ -1266,22 +1291,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(51); - if (lookahead == ')') ADVANCE(52); + if (lookahead == '(') ADVANCE(32); + if (lookahead == ')') ADVANCE(33); if (lookahead == '*') ADVANCE(60); if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(32); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); if (lookahead == ':') ADVANCE(53); if (lookahead == ';') ADVANCE(31); if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(49); + if (lookahead == '=') ADVANCE(51); if (lookahead == '>') ADVANCE(68); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); + if (lookahead == '[') ADVANCE(49); + if (lookahead == ']') ADVANCE(50); if (lookahead == '`') ADVANCE(15); if (lookahead == '{') ADVANCE(29); if (lookahead == '|') ADVANCE(22); @@ -1291,25 +1316,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(1) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 2: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); - if (lookahead == '(') ADVANCE(51); - if (lookahead == ')') ADVANCE(52); + if (lookahead == '(') ADVANCE(32); + if (lookahead == ')') ADVANCE(33); if (lookahead == '*') ADVANCE(60); if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(32); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(57); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(61); if (lookahead == ':') ADVANCE(53); if (lookahead == ';') ADVANCE(31); if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(50); + if (lookahead == '=') ADVANCE(52); if (lookahead == '>') ADVANCE(68); if (lookahead == '{') ADVANCE(29); if (lookahead == '|') ADVANCE(22); @@ -1320,23 +1345,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(2) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 3: if (lookahead == '!') ADVANCE(11); if (lookahead == '#') ADVANCE(21); if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); - if (lookahead == '(') ADVANCE(51); + if (lookahead == '(') ADVANCE(32); if (lookahead == '*') ADVANCE(60); if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(32); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(57); if (lookahead == '/') ADVANCE(61); if (lookahead == ':') ADVANCE(53); if (lookahead == ';') ADVANCE(31); if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(49); + if (lookahead == '=') ADVANCE(51); if (lookahead == '>') ADVANCE(68); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(30); @@ -1346,7 +1371,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(3) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 4: if (lookahead == '!') ADVANCE(11); @@ -1371,17 +1396,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(6); if (lookahead == '#') ADVANCE(21); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(51); + if (lookahead == '(') ADVANCE(32); if (lookahead == '*') ADVANCE(60); - if (lookahead == ',') ADVANCE(32); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); if (lookahead == ';') ADVANCE(31); if (lookahead == '=') ADVANCE(14); if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(47); + if (lookahead == '[') ADVANCE(49); if (lookahead == '`') ADVANCE(15); - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'e') ADVANCE(40); if (lookahead == '{') ADVANCE(29); if (lookahead == '}') ADVANCE(30); if (lookahead == '\t' || @@ -1389,34 +1414,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(46); + if (lookahead == '"') ADVANCE(48); if (lookahead != 0) ADVANCE(6); END_STATE(); case 7: if (lookahead == '#') ADVANCE(21); - if (lookahead == '(') ADVANCE(51); - if (lookahead == ')') ADVANCE(52); - if (lookahead == ',') ADVANCE(32); + if (lookahead == '(') ADVANCE(32); + if (lookahead == ')') ADVANCE(33); + if (lookahead == ',') ADVANCE(34); if (lookahead == '-') ADVANCE(13); if (lookahead == '>') ADVANCE(67); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); + if (lookahead == '[') ADVANCE(49); + if (lookahead == ']') ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 8: if (lookahead == '&') ADVANCE(65); END_STATE(); case 9: - if (lookahead == '\'') ADVANCE(46); + if (lookahead == '\'') ADVANCE(48); if (lookahead != 0) ADVANCE(9); END_STATE(); case 10: @@ -1436,7 +1461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(75); END_STATE(); case 15: - if (lookahead == '`') ADVANCE(46); + if (lookahead == '`') ADVANCE(48); if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: @@ -1464,10 +1489,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(66); END_STATE(); case 23: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); END_STATE(); case 24: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 25: if (eof) ADVANCE(26); @@ -1477,21 +1502,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '%') ADVANCE(62); if (lookahead == '&') ADVANCE(8); if (lookahead == '\'') ADVANCE(9); - if (lookahead == '(') ADVANCE(51); + if (lookahead == '(') ADVANCE(32); if (lookahead == '*') ADVANCE(60); if (lookahead == '+') ADVANCE(56); if (lookahead == '-') ADVANCE(59); if (lookahead == '.') ADVANCE(10); if (lookahead == '/') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); if (lookahead == ':') ADVANCE(53); if (lookahead == ';') ADVANCE(31); if (lookahead == '<') ADVANCE(69); - if (lookahead == '=') ADVANCE(49); + if (lookahead == '=') ADVANCE(51); if (lookahead == '>') ADVANCE(68); - if (lookahead == '[') ADVANCE(47); + if (lookahead == '[') ADVANCE(49); if (lookahead == '`') ADVANCE(15); - if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'a') ADVANCE(42); if (lookahead == '{') ADVANCE(29); if (lookahead == '|') ADVANCE(22); if (lookahead == '}') ADVANCE(30); @@ -1500,7 +1525,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(25) if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 26: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1525,123 +1550,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 33: - ACCEPT_TOKEN(sym__identifier_pattern); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 34: - ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == ' ') ADVANCE(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 35: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == ' ') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 36: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 'c') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == ' ') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 37: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 'e') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == ' ') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 38: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 'l') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 'c') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 39: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 'n') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 'e') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 40: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 's') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 'l') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 41: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 's') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 'n') ADVANCE(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 42: ACCEPT_TOKEN(sym__identifier_pattern); - if (lookahead == 'y') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 's') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 43: ACCEPT_TOKEN(sym__identifier_pattern); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (lookahead == 's') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 44: - ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + ACCEPT_TOKEN(sym__identifier_pattern); + if (lookahead == 'y') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 45: - ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + ACCEPT_TOKEN(sym__identifier_pattern); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 46: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_string); END_STATE(); case 49: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 51: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(63); END_STATE(); - case 50: + case 52: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(63); if (lookahead == '>') ADVANCE(75); END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); @@ -1666,7 +1691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_DASH); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); if (lookahead == '=') ADVANCE(73); if (lookahead == '>') ADVANCE(77); END_STATE(); @@ -2405,7 +2430,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 25}, [76] = {.lex_state = 25}, [77] = {.lex_state = 25}, - [78] = {.lex_state = 1}, + [78] = {.lex_state = 25}, [79] = {.lex_state = 1}, [80] = {.lex_state = 1}, [81] = {.lex_state = 1}, @@ -2442,68 +2467,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 1}, [113] = {.lex_state = 1}, [114] = {.lex_state = 1}, - [115] = {.lex_state = 2}, + [115] = {.lex_state = 1}, [116] = {.lex_state = 1}, - [117] = {.lex_state = 2}, + [117] = {.lex_state = 1}, [118] = {.lex_state = 2}, [119] = {.lex_state = 2}, - [120] = {.lex_state = 2}, + [120] = {.lex_state = 1}, [121] = {.lex_state = 1}, - [122] = {.lex_state = 1}, + [122] = {.lex_state = 2}, [123] = {.lex_state = 2}, - [124] = {.lex_state = 2}, + [124] = {.lex_state = 1}, [125] = {.lex_state = 2}, [126] = {.lex_state = 1}, - [127] = {.lex_state = 2}, + [127] = {.lex_state = 1}, [128] = {.lex_state = 1}, [129] = {.lex_state = 1}, [130] = {.lex_state = 1}, [131] = {.lex_state = 1}, [132] = {.lex_state = 1}, - [133] = {.lex_state = 2}, - [134] = {.lex_state = 2}, - [135] = {.lex_state = 2}, - [136] = {.lex_state = 2}, + [133] = {.lex_state = 1}, + [134] = {.lex_state = 1}, + [135] = {.lex_state = 1}, + [136] = {.lex_state = 1}, [137] = {.lex_state = 1}, [138] = {.lex_state = 1}, [139] = {.lex_state = 1}, [140] = {.lex_state = 1}, [141] = {.lex_state = 1}, - [142] = {.lex_state = 2}, - [143] = {.lex_state = 2}, + [142] = {.lex_state = 1}, + [143] = {.lex_state = 1}, [144] = {.lex_state = 1}, [145] = {.lex_state = 2}, [146] = {.lex_state = 2}, - [147] = {.lex_state = 2}, + [147] = {.lex_state = 1}, [148] = {.lex_state = 2}, [149] = {.lex_state = 1}, - [150] = {.lex_state = 2}, - [151] = {.lex_state = 2}, - [152] = {.lex_state = 2}, - [153] = {.lex_state = 1}, + [150] = {.lex_state = 1}, + [151] = {.lex_state = 1}, + [152] = {.lex_state = 1}, + [153] = {.lex_state = 2}, [154] = {.lex_state = 2}, [155] = {.lex_state = 2}, [156] = {.lex_state = 2}, - [157] = {.lex_state = 1}, + [157] = {.lex_state = 2}, [158] = {.lex_state = 2}, - [159] = {.lex_state = 1}, - [160] = {.lex_state = 1}, + [159] = {.lex_state = 2}, + [160] = {.lex_state = 2}, [161] = {.lex_state = 2}, - [162] = {.lex_state = 1}, + [162] = {.lex_state = 2}, [163] = {.lex_state = 2}, [164] = {.lex_state = 2}, [165] = {.lex_state = 2}, - [166] = {.lex_state = 1}, - [167] = {.lex_state = 1}, + [166] = {.lex_state = 2}, + [167] = {.lex_state = 2}, [168] = {.lex_state = 2}, - [169] = {.lex_state = 1}, - [170] = {.lex_state = 1}, - [171] = {.lex_state = 1}, - [172] = {.lex_state = 1}, - [173] = {.lex_state = 1}, - [174] = {.lex_state = 1}, - [175] = {.lex_state = 1}, - [176] = {.lex_state = 1}, + [169] = {.lex_state = 2}, + [170] = {.lex_state = 2}, + [171] = {.lex_state = 2}, + [172] = {.lex_state = 2}, + [173] = {.lex_state = 2}, + [174] = {.lex_state = 2}, + [175] = {.lex_state = 2}, + [176] = {.lex_state = 2}, [177] = {.lex_state = 1}, [178] = {.lex_state = 1}, [179] = {.lex_state = 1}, @@ -2512,7 +2537,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [182] = {.lex_state = 1}, [183] = {.lex_state = 1}, [184] = {.lex_state = 1}, - [185] = {.lex_state = 0}, + [185] = {.lex_state = 1}, [186] = {.lex_state = 1}, [187] = {.lex_state = 1}, [188] = {.lex_state = 1}, @@ -2528,7 +2553,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [198] = {.lex_state = 1}, [199] = {.lex_state = 1}, [200] = {.lex_state = 1}, - [201] = {.lex_state = 0}, + [201] = {.lex_state = 1}, [202] = {.lex_state = 1}, [203] = {.lex_state = 1}, [204] = {.lex_state = 1}, @@ -2541,46 +2566,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 1}, [212] = {.lex_state = 1}, [213] = {.lex_state = 1}, - [214] = {.lex_state = 0}, - [215] = {.lex_state = 3}, - [216] = {.lex_state = 3}, - [217] = {.lex_state = 0}, - [218] = {.lex_state = 0}, - [219] = {.lex_state = 0}, - [220] = {.lex_state = 0}, - [221] = {.lex_state = 25}, - [222] = {.lex_state = 25}, - [223] = {.lex_state = 2}, - [224] = {.lex_state = 25}, - [225] = {.lex_state = 25}, - [226] = {.lex_state = 25}, - [227] = {.lex_state = 2}, - [228] = {.lex_state = 25}, - [229] = {.lex_state = 25}, - [230] = {.lex_state = 25}, - [231] = {.lex_state = 2}, + [214] = {.lex_state = 1}, + [215] = {.lex_state = 1}, + [216] = {.lex_state = 1}, + [217] = {.lex_state = 1}, + [218] = {.lex_state = 1}, + [219] = {.lex_state = 1}, + [220] = {.lex_state = 1}, + [221] = {.lex_state = 1}, + [222] = {.lex_state = 0}, + [223] = {.lex_state = 0}, + [224] = {.lex_state = 3}, + [225] = {.lex_state = 0}, + [226] = {.lex_state = 3}, + [227] = {.lex_state = 0}, + [228] = {.lex_state = 0}, + [229] = {.lex_state = 0}, + [230] = {.lex_state = 0}, + [231] = {.lex_state = 25}, [232] = {.lex_state = 25}, - [233] = {.lex_state = 25}, - [234] = {.lex_state = 25}, + [233] = {.lex_state = 2}, + [234] = {.lex_state = 2}, [235] = {.lex_state = 25}, - [236] = {.lex_state = 5}, - [237] = {.lex_state = 5}, - [238] = {.lex_state = 5}, + [236] = {.lex_state = 25}, + [237] = {.lex_state = 25}, + [238] = {.lex_state = 25}, [239] = {.lex_state = 25}, - [240] = {.lex_state = 5}, - [241] = {.lex_state = 5}, - [242] = {.lex_state = 5}, - [243] = {.lex_state = 5}, - [244] = {.lex_state = 1}, - [245] = {.lex_state = 1}, - [246] = {.lex_state = 1}, - [247] = {.lex_state = 1}, - [248] = {.lex_state = 1}, - [249] = {.lex_state = 1}, - [250] = {.lex_state = 1}, - [251] = {.lex_state = 1}, - [252] = {.lex_state = 1}, - [253] = {.lex_state = 1}, + [240] = {.lex_state = 2}, + [241] = {.lex_state = 25}, + [242] = {.lex_state = 25}, + [243] = {.lex_state = 25}, + [244] = {.lex_state = 25}, + [245] = {.lex_state = 25}, + [246] = {.lex_state = 5}, + [247] = {.lex_state = 5}, + [248] = {.lex_state = 5}, + [249] = {.lex_state = 25}, + [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}, @@ -2599,8 +2624,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 1}, [270] = {.lex_state = 1}, [271] = {.lex_state = 1}, - [272] = {.lex_state = 1}, - [273] = {.lex_state = 1}, + [272] = {.lex_state = 5}, + [273] = {.lex_state = 5}, [274] = {.lex_state = 1}, [275] = {.lex_state = 1}, [276] = {.lex_state = 1}, @@ -2612,18 +2637,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 1}, [283] = {.lex_state = 1}, [284] = {.lex_state = 1}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 2}, - [287] = {.lex_state = 2}, - [288] = {.lex_state = 2}, - [289] = {.lex_state = 2}, - [290] = {.lex_state = 2}, - [291] = {.lex_state = 2}, - [292] = {.lex_state = 2}, - [293] = {.lex_state = 2}, - [294] = {.lex_state = 2}, + [285] = {.lex_state = 1}, + [286] = {.lex_state = 1}, + [287] = {.lex_state = 1}, + [288] = {.lex_state = 1}, + [289] = {.lex_state = 1}, + [290] = {.lex_state = 1}, + [291] = {.lex_state = 1}, + [292] = {.lex_state = 1}, + [293] = {.lex_state = 1}, + [294] = {.lex_state = 1}, [295] = {.lex_state = 2}, - [296] = {.lex_state = 4}, + [296] = {.lex_state = 2}, [297] = {.lex_state = 2}, [298] = {.lex_state = 2}, [299] = {.lex_state = 2}, @@ -2632,62 +2657,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [302] = {.lex_state = 2}, [303] = {.lex_state = 2}, [304] = {.lex_state = 2}, - [305] = {.lex_state = 7}, - [306] = {.lex_state = 7}, - [307] = {.lex_state = 7}, - [308] = {.lex_state = 7}, - [309] = {.lex_state = 7}, - [310] = {.lex_state = 7}, - [311] = {.lex_state = 1}, - [312] = {.lex_state = 1}, - [313] = {.lex_state = 1}, - [314] = {.lex_state = 1}, - [315] = {.lex_state = 1}, - [316] = {.lex_state = 1}, - [317] = {.lex_state = 1}, - [318] = {.lex_state = 1}, - [319] = {.lex_state = 1}, - [320] = {.lex_state = 1}, - [321] = {.lex_state = 25}, - [322] = {.lex_state = 25}, - [323] = {.lex_state = 25}, - [324] = {.lex_state = 25}, - [325] = {.lex_state = 1}, - [326] = {.lex_state = 1}, + [305] = {.lex_state = 2}, + [306] = {.lex_state = 2}, + [307] = {.lex_state = 4}, + [308] = {.lex_state = 2}, + [309] = {.lex_state = 2}, + [310] = {.lex_state = 2}, + [311] = {.lex_state = 2}, + [312] = {.lex_state = 2}, + [313] = {.lex_state = 2}, + [314] = {.lex_state = 2}, + [315] = {.lex_state = 2}, + [316] = {.lex_state = 2}, + [317] = {.lex_state = 2}, + [318] = {.lex_state = 2}, + [319] = {.lex_state = 2}, + [320] = {.lex_state = 7}, + [321] = {.lex_state = 2}, + [322] = {.lex_state = 7}, + [323] = {.lex_state = 7}, + [324] = {.lex_state = 7}, + [325] = {.lex_state = 7}, + [326] = {.lex_state = 7}, [327] = {.lex_state = 1}, - [328] = {.lex_state = 25}, + [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 = 0}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 0}, - [340] = {.lex_state = 0}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 0}, + [334] = {.lex_state = 1}, + [335] = {.lex_state = 1}, + [336] = {.lex_state = 1}, + [337] = {.lex_state = 25}, + [338] = {.lex_state = 25}, + [339] = {.lex_state = 25}, + [340] = {.lex_state = 25}, + [341] = {.lex_state = 1}, + [342] = {.lex_state = 1}, + [343] = {.lex_state = 1}, + [344] = {.lex_state = 25}, + [345] = {.lex_state = 1}, + [346] = {.lex_state = 1}, [347] = {.lex_state = 1}, - [348] = {.lex_state = 0}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 5}, - [351] = {.lex_state = 25}, - [352] = {.lex_state = 1}, + [348] = {.lex_state = 1}, + [349] = {.lex_state = 1}, + [350] = {.lex_state = 1}, + [351] = {.lex_state = 0}, + [352] = {.lex_state = 0}, [353] = {.lex_state = 0}, [354] = {.lex_state = 0}, - [355] = {.lex_state = 5}, + [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, + [358] = {.lex_state = 5}, [359] = {.lex_state = 0}, [360] = {.lex_state = 0}, + [361] = {.lex_state = 0}, + [362] = {.lex_state = 1}, + [363] = {.lex_state = 0}, + [364] = {.lex_state = 0}, + [365] = {.lex_state = 0}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 0}, + [370] = {.lex_state = 0}, + [371] = {.lex_state = 1}, + [372] = {.lex_state = 0}, + [373] = {.lex_state = 0}, + [374] = {.lex_state = 1}, + [375] = {.lex_state = 25}, + [376] = {.lex_state = 5}, + [377] = {.lex_state = 0}, + [378] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2699,6 +2742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), @@ -2710,8 +2755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_none] = ACTIONS(1), [anon_sym_some] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -2770,46 +2813,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(344), - [sym_block] = STATE(235), - [sym_statement] = STATE(12), - [sym_expression] = STATE(76), + [sym_root] = STATE(363), + [sym_block] = STATE(236), + [sym_statement] = STATE(11), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(12), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(11), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -2838,116 +2882,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [2] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(6), - [sym_expression] = STATE(76), - [sym_identifier] = STATE(65), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(6), - [aux_sym_map_repeat1] = STATE(271), - [sym__identifier_pattern] = ACTIONS(5), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), + [sym_identifier] = STATE(51), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(39), + [sym__identifier_pattern] = ACTIONS(41), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_async] = ACTIONS(44), + [anon_sym_LBRACE] = ACTIONS(47), [anon_sym_RBRACE] = ACTIONS(39), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = 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(50), + [sym_integer] = ACTIONS(53), + [sym_float] = ACTIONS(56), + [sym_string] = ACTIONS(56), + [anon_sym_true] = ACTIONS(59), + [anon_sym_false] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(62), + [anon_sym_none] = ACTIONS(65), + [anon_sym_some] = ACTIONS(68), + [anon_sym_if] = ACTIONS(71), + [anon_sym_match] = ACTIONS(74), + [anon_sym_while] = ACTIONS(77), + [anon_sym_for] = ACTIONS(80), + [anon_sym_asyncfor] = ACTIONS(83), + [anon_sym_return] = ACTIONS(86), + [anon_sym_assert] = ACTIONS(89), + [anon_sym_assert_equal] = ACTIONS(89), + [anon_sym_bash] = ACTIONS(89), + [anon_sym_download] = ACTIONS(89), + [anon_sym_either_or] = ACTIONS(89), + [anon_sym_fish] = ACTIONS(89), + [anon_sym_from_json] = ACTIONS(89), + [anon_sym_is_none] = ACTIONS(89), + [anon_sym_is_some] = ACTIONS(89), + [anon_sym_length] = ACTIONS(89), + [anon_sym_metadata] = ACTIONS(89), + [anon_sym_output] = ACTIONS(89), + [anon_sym_output_error] = ACTIONS(89), + [anon_sym_random] = ACTIONS(89), + [anon_sym_random_boolean] = ACTIONS(89), + [anon_sym_random_float] = ACTIONS(89), + [anon_sym_random_integer] = ACTIONS(89), + [anon_sym_read] = ACTIONS(89), + [anon_sym_to_json] = ACTIONS(89), + [anon_sym_write] = ACTIONS(89), }, [3] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(9), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(12), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(65), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(9), - [aux_sym_map_repeat1] = STATE(270), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(12), + [aux_sym_map_repeat1] = STATE(277), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(41), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(92), + [anon_sym_LPAREN] = 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), @@ -2976,116 +3022,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [4] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), - [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(43), - [sym__identifier_pattern] = ACTIONS(45), + [sym_block] = STATE(236), + [sym_statement] = STATE(15), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), + [sym_identifier] = STATE(65), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(15), + [aux_sym_map_repeat1] = STATE(285), + [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(48), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(43), - [sym_integer] = ACTIONS(54), - [sym_float] = ACTIONS(57), - [sym_string] = ACTIONS(57), - [anon_sym_true] = ACTIONS(60), - [anon_sym_false] = ACTIONS(60), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_none] = ACTIONS(66), - [anon_sym_some] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(72), - [anon_sym_if] = ACTIONS(75), - [anon_sym_match] = ACTIONS(78), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(84), - [anon_sym_asyncfor] = ACTIONS(87), - [anon_sym_return] = ACTIONS(90), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_assert_equal] = ACTIONS(93), - [anon_sym_bash] = ACTIONS(93), - [anon_sym_download] = ACTIONS(93), - [anon_sym_either_or] = ACTIONS(93), - [anon_sym_fish] = ACTIONS(93), - [anon_sym_from_json] = ACTIONS(93), - [anon_sym_is_none] = ACTIONS(93), - [anon_sym_is_some] = ACTIONS(93), - [anon_sym_length] = ACTIONS(93), - [anon_sym_metadata] = ACTIONS(93), - [anon_sym_output] = ACTIONS(93), - [anon_sym_output_error] = ACTIONS(93), - [anon_sym_random] = ACTIONS(93), - [anon_sym_random_boolean] = ACTIONS(93), - [anon_sym_random_float] = ACTIONS(93), - [anon_sym_random_integer] = ACTIONS(93), - [anon_sym_read] = ACTIONS(93), - [anon_sym_to_json] = ACTIONS(93), - [anon_sym_write] = ACTIONS(93), + [anon_sym_async] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(94), + [anon_sym_LPAREN] = 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), }, [5] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(6), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(10), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(65), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(6), - [aux_sym_map_repeat1] = STATE(268), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(10), + [aux_sym_map_repeat1] = STATE(278), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(96), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3114,46 +3162,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [6] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(98), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3182,46 +3231,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [7] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(100), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3250,46 +3300,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [8] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(102), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3318,46 +3369,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [9] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(104), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3386,46 +3438,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [10] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(106), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3454,46 +3507,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [11] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(108), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(108), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3522,46 +3576,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [12] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(110), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(110), + [anon_sym_LPAREN] = 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), @@ -3590,46 +3645,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [13] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(112), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3658,46 +3714,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [14] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(114), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3726,46 +3783,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [15] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(116), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3794,46 +3852,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [16] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(4), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(2), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(4), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(2), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(118), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3862,45 +3921,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [17] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(11), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(9), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(11), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(9), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3929,45 +3989,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [18] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(7), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(14), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(7), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(14), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -3996,45 +4057,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [19] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(14), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(16), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(14), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(16), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4063,45 +4125,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [20] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(16), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(13), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(16), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(13), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4130,45 +4193,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [21] = { - [sym_block] = STATE(235), + [sym_block] = STATE(236), [sym_statement] = STATE(15), - [sym_expression] = STATE(76), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), [aux_sym_root_repeat1] = STATE(15), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4197,45 +4261,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [22] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(6), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(12), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(6), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(12), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4264,45 +4329,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [23] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(9), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(6), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(9), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(6), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4331,45 +4397,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [24] = { - [sym_block] = STATE(235), + [sym_block] = STATE(236), [sym_statement] = STATE(8), - [sym_expression] = STATE(76), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), [aux_sym_root_repeat1] = STATE(8), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4398,45 +4465,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [25] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(13), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(10), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(13), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(10), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4465,45 +4533,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [26] = { - [sym_block] = STATE(235), - [sym_statement] = STATE(10), - [sym_expression] = STATE(76), + [sym_block] = STATE(236), + [sym_statement] = STATE(7), + [sym_expression] = STATE(77), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(235), - [sym_index_assignment] = STATE(235), - [sym_if_else] = STATE(235), - [sym_if] = STATE(201), - [sym_match] = STATE(235), - [sym_while] = STATE(235), - [sym_for] = STATE(235), - [sym_return] = STATE(235), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [aux_sym_root_repeat1] = STATE(10), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(236), + [sym_index_assignment] = STATE(236), + [sym_if_else] = STATE(236), + [sym_if] = STATE(222), + [sym_match] = STATE(236), + [sym_while] = STATE(236), + [sym_for] = STATE(236), + [sym_return] = STATE(236), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [aux_sym_root_repeat1] = STATE(7), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4532,44 +4601,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [27] = { - [sym_block] = STATE(232), - [sym_statement] = STATE(233), - [sym_expression] = STATE(75), + [sym_block] = STATE(241), + [sym_statement] = STATE(242), + [sym_expression] = STATE(78), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(201), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(241), + [sym_index_assignment] = STATE(241), + [sym_if_else] = STATE(241), + [sym_if] = STATE(222), + [sym_match] = STATE(241), + [sym_while] = STATE(241), + [sym_for] = STATE(241), + [sym_return] = STATE(241), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), @@ -4598,44 +4668,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [28] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(249), - [sym_expression] = STATE(231), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), + [sym_block] = STATE(257), + [sym_statement] = STATE(254), + [sym_expression] = STATE(115), + [sym__expression_kind] = STATE(96), + [sym_identifier] = STATE(111), + [sym_value] = STATE(96), + [sym_boolean] = STATE(94), + [sym_list] = STATE(94), + [sym_map] = STATE(94), + [sym_option] = STATE(94), + [sym_index] = STATE(112), + [sym_math] = STATE(96), + [sym_logic] = STATE(96), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(246), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(105), + [sym_function_expression] = STATE(361), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(95), [sym__identifier_pattern] = ACTIONS(120), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(126), + [sym_integer] = ACTIONS(128), + [sym_float] = ACTIONS(130), + [sym_string] = ACTIONS(130), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_none] = ACTIONS(136), + [anon_sym_some] = ACTIONS(138), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), [anon_sym_while] = ACTIONS(144), @@ -4664,308 +4735,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(152), }, [29] = { - [sym_block] = STATE(254), - [sym_statement] = STATE(279), - [sym_expression] = STATE(227), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(254), - [sym_index_assignment] = STATE(254), - [sym_if_else] = STATE(254), - [sym_if] = STATE(236), - [sym_match] = STATE(254), - [sym_while] = STATE(254), - [sym_for] = STATE(254), - [sym_return] = STATE(254), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), - [sym__identifier_pattern] = ACTIONS(120), + [sym_block] = STATE(257), + [sym_statement] = STATE(254), + [sym_expression] = STATE(240), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(272), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), + [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(150), - [anon_sym_assert] = ACTIONS(152), - [anon_sym_assert_equal] = ACTIONS(152), - [anon_sym_bash] = ACTIONS(152), - [anon_sym_download] = ACTIONS(152), - [anon_sym_either_or] = ACTIONS(152), - [anon_sym_fish] = ACTIONS(152), - [anon_sym_from_json] = ACTIONS(152), - [anon_sym_is_none] = ACTIONS(152), - [anon_sym_is_some] = ACTIONS(152), - [anon_sym_length] = ACTIONS(152), - [anon_sym_metadata] = ACTIONS(152), - [anon_sym_output] = ACTIONS(152), - [anon_sym_output_error] = ACTIONS(152), - [anon_sym_random] = ACTIONS(152), - [anon_sym_random_boolean] = ACTIONS(152), - [anon_sym_random_float] = ACTIONS(152), - [anon_sym_random_integer] = ACTIONS(152), - [anon_sym_read] = ACTIONS(152), - [anon_sym_to_json] = ACTIONS(152), - [anon_sym_write] = ACTIONS(152), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [30] = { - [sym_block] = STATE(254), - [sym_statement] = STATE(277), - [sym_expression] = STATE(227), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(254), - [sym_index_assignment] = STATE(254), - [sym_if_else] = STATE(254), - [sym_if] = STATE(236), - [sym_match] = STATE(254), - [sym_while] = STATE(254), - [sym_for] = STATE(254), - [sym_return] = STATE(254), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), - [sym__identifier_pattern] = ACTIONS(120), + [sym_block] = STATE(258), + [sym_statement] = STATE(290), + [sym_expression] = STATE(234), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(258), + [sym_index_assignment] = STATE(258), + [sym_if_else] = STATE(258), + [sym_if] = STATE(272), + [sym_match] = STATE(258), + [sym_while] = STATE(258), + [sym_for] = STATE(258), + [sym_return] = STATE(258), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), + [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(150), - [anon_sym_assert] = ACTIONS(152), - [anon_sym_assert_equal] = ACTIONS(152), - [anon_sym_bash] = ACTIONS(152), - [anon_sym_download] = ACTIONS(152), - [anon_sym_either_or] = ACTIONS(152), - [anon_sym_fish] = ACTIONS(152), - [anon_sym_from_json] = ACTIONS(152), - [anon_sym_is_none] = ACTIONS(152), - [anon_sym_is_some] = ACTIONS(152), - [anon_sym_length] = ACTIONS(152), - [anon_sym_metadata] = ACTIONS(152), - [anon_sym_output] = ACTIONS(152), - [anon_sym_output_error] = ACTIONS(152), - [anon_sym_random] = ACTIONS(152), - [anon_sym_random_boolean] = ACTIONS(152), - [anon_sym_random_float] = ACTIONS(152), - [anon_sym_random_integer] = ACTIONS(152), - [anon_sym_read] = ACTIONS(152), - [anon_sym_to_json] = ACTIONS(152), - [anon_sym_write] = ACTIONS(152), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [31] = { - [sym_block] = STATE(254), - [sym_statement] = STATE(277), - [sym_expression] = STATE(227), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(254), - [sym_index_assignment] = STATE(254), - [sym_if_else] = STATE(254), - [sym_if] = STATE(236), - [sym_match] = STATE(254), - [sym_while] = STATE(254), - [sym_for] = STATE(254), - [sym_return] = STATE(254), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), - [sym__identifier_pattern] = ACTIONS(120), + [sym_block] = STATE(257), + [sym_statement] = STATE(255), + [sym_expression] = STATE(240), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(272), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), + [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(150), - [anon_sym_assert] = ACTIONS(152), - [anon_sym_assert_equal] = ACTIONS(152), - [anon_sym_bash] = ACTIONS(152), - [anon_sym_download] = ACTIONS(152), - [anon_sym_either_or] = ACTIONS(152), - [anon_sym_fish] = ACTIONS(152), - [anon_sym_from_json] = ACTIONS(152), - [anon_sym_is_none] = ACTIONS(152), - [anon_sym_is_some] = ACTIONS(152), - [anon_sym_length] = ACTIONS(152), - [anon_sym_metadata] = ACTIONS(152), - [anon_sym_output] = ACTIONS(152), - [anon_sym_output_error] = ACTIONS(152), - [anon_sym_random] = ACTIONS(152), - [anon_sym_random_boolean] = ACTIONS(152), - [anon_sym_random_float] = ACTIONS(152), - [anon_sym_random_integer] = ACTIONS(152), - [anon_sym_read] = ACTIONS(152), - [anon_sym_to_json] = ACTIONS(152), - [anon_sym_write] = ACTIONS(152), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [32] = { - [sym_block] = STATE(254), - [sym_statement] = STATE(279), - [sym_expression] = STATE(227), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(254), - [sym_index_assignment] = STATE(254), - [sym_if_else] = STATE(254), - [sym_if] = STATE(236), - [sym_match] = STATE(254), - [sym_while] = STATE(254), - [sym_for] = STATE(254), - [sym_return] = STATE(254), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), - [sym__identifier_pattern] = ACTIONS(120), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_if] = ACTIONS(140), - [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(150), - [anon_sym_assert] = ACTIONS(152), - [anon_sym_assert_equal] = ACTIONS(152), - [anon_sym_bash] = ACTIONS(152), - [anon_sym_download] = ACTIONS(152), - [anon_sym_either_or] = ACTIONS(152), - [anon_sym_fish] = ACTIONS(152), - [anon_sym_from_json] = ACTIONS(152), - [anon_sym_is_none] = ACTIONS(152), - [anon_sym_is_some] = ACTIONS(152), - [anon_sym_length] = ACTIONS(152), - [anon_sym_metadata] = ACTIONS(152), - [anon_sym_output] = ACTIONS(152), - [anon_sym_output_error] = ACTIONS(152), - [anon_sym_random] = ACTIONS(152), - [anon_sym_random_boolean] = ACTIONS(152), - [anon_sym_random_float] = ACTIONS(152), - [anon_sym_random_integer] = ACTIONS(152), - [anon_sym_read] = ACTIONS(152), - [anon_sym_to_json] = ACTIONS(152), - [anon_sym_write] = ACTIONS(152), - }, - [33] = { - [sym_block] = STATE(232), - [sym_statement] = STATE(224), - [sym_expression] = STATE(75), + [sym_block] = STATE(241), + [sym_statement] = STATE(243), + [sym_expression] = STATE(78), + [sym__expression_kind] = STATE(64), [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(201), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(241), + [sym_index_assignment] = STATE(241), + [sym_if_else] = STATE(241), + [sym_if] = STATE(222), + [sym_match] = STATE(241), + [sym_while] = STATE(241), + [sym_for] = STATE(241), + [sym_return] = STATE(241), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), [sym__identifier_pattern] = ACTIONS(5), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(7), [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LPAREN] = 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), + }, + [33] = { + [sym_block] = STATE(241), + [sym_statement] = STATE(245), + [sym_expression] = STATE(78), + [sym__expression_kind] = STATE(64), + [sym_identifier] = STATE(51), + [sym_value] = STATE(64), + [sym_boolean] = STATE(75), + [sym_list] = STATE(75), + [sym_map] = STATE(75), + [sym_option] = STATE(75), + [sym_index] = STATE(68), + [sym_math] = STATE(64), + [sym_logic] = STATE(64), + [sym_assignment] = STATE(241), + [sym_index_assignment] = STATE(241), + [sym_if_else] = STATE(241), + [sym_if] = STATE(222), + [sym_match] = STATE(241), + [sym_while] = STATE(241), + [sym_for] = STATE(241), + [sym_return] = STATE(241), + [sym_function] = STATE(53), + [sym_function_expression] = STATE(366), + [sym_function_call] = STATE(57), + [sym_yield] = STATE(57), + [sym_built_in_function] = STATE(46), + [sym__identifier_pattern] = ACTIONS(5), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_LPAREN] = 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), @@ -4994,110 +5070,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(37), }, [34] = { - [sym_block] = STATE(254), - [sym_statement] = STATE(256), - [sym_expression] = STATE(111), - [sym_identifier] = STATE(109), - [sym_value] = STATE(92), - [sym_boolean] = STATE(96), - [sym_list] = STATE(96), - [sym_map] = STATE(96), - [sym_option] = STATE(96), - [sym_index] = STATE(110), - [sym_math] = STATE(92), - [sym_logic] = STATE(92), - [sym_assignment] = STATE(254), - [sym_index_assignment] = STATE(254), - [sym_if_else] = STATE(254), - [sym_if] = STATE(236), - [sym_match] = STATE(254), - [sym_while] = STATE(254), - [sym_for] = STATE(254), - [sym_return] = STATE(254), - [sym_function] = STATE(90), - [sym_function_expression] = STATE(346), - [sym_function_call] = STATE(99), - [sym_yield] = STATE(99), - [sym_built_in_function] = STATE(93), - [sym__identifier_pattern] = ACTIONS(154), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(156), - [sym_integer] = ACTIONS(158), - [sym_float] = ACTIONS(160), - [sym_string] = ACTIONS(160), - [anon_sym_true] = ACTIONS(162), - [anon_sym_false] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_none] = ACTIONS(166), - [anon_sym_some] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_if] = ACTIONS(140), - [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(172), - [anon_sym_assert] = ACTIONS(174), - [anon_sym_assert_equal] = ACTIONS(174), - [anon_sym_bash] = ACTIONS(174), - [anon_sym_download] = ACTIONS(174), - [anon_sym_either_or] = ACTIONS(174), - [anon_sym_fish] = ACTIONS(174), - [anon_sym_from_json] = ACTIONS(174), - [anon_sym_is_none] = ACTIONS(174), - [anon_sym_is_some] = ACTIONS(174), - [anon_sym_length] = ACTIONS(174), - [anon_sym_metadata] = ACTIONS(174), - [anon_sym_output] = ACTIONS(174), - [anon_sym_output_error] = ACTIONS(174), - [anon_sym_random] = ACTIONS(174), - [anon_sym_random_boolean] = ACTIONS(174), - [anon_sym_random_float] = ACTIONS(174), - [anon_sym_random_integer] = ACTIONS(174), - [anon_sym_read] = ACTIONS(174), - [anon_sym_to_json] = ACTIONS(174), - [anon_sym_write] = ACTIONS(174), - }, - [35] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(250), - [sym_expression] = STATE(231), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), + [sym_block] = STATE(257), + [sym_statement] = STATE(261), + [sym_expression] = STATE(115), + [sym__expression_kind] = STATE(96), + [sym_identifier] = STATE(111), + [sym_value] = STATE(96), + [sym_boolean] = STATE(94), + [sym_list] = STATE(94), + [sym_map] = STATE(94), + [sym_option] = STATE(94), + [sym_index] = STATE(112), + [sym_math] = STATE(96), + [sym_logic] = STATE(96), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(246), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(105), + [sym_function_expression] = STATE(361), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(95), [sym__identifier_pattern] = ACTIONS(120), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(126), + [sym_integer] = ACTIONS(128), + [sym_float] = ACTIONS(130), + [sym_string] = ACTIONS(130), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_none] = ACTIONS(136), + [anon_sym_some] = ACTIONS(138), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), [anon_sym_while] = ACTIONS(144), @@ -5125,111 +5136,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(152), [anon_sym_write] = ACTIONS(152), }, - [36] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(252), - [sym_expression] = STATE(112), - [sym_identifier] = STATE(109), - [sym_value] = STATE(92), - [sym_boolean] = STATE(96), - [sym_list] = STATE(96), - [sym_map] = STATE(96), - [sym_option] = STATE(96), - [sym_index] = STATE(110), - [sym_math] = STATE(92), - [sym_logic] = STATE(92), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(90), - [sym_function_expression] = STATE(346), - [sym_function_call] = STATE(99), - [sym_yield] = STATE(99), - [sym_built_in_function] = STATE(93), + [35] = { + [sym_block] = STATE(258), + [sym_statement] = STATE(287), + [sym_expression] = STATE(234), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(258), + [sym_index_assignment] = STATE(258), + [sym_if_else] = STATE(258), + [sym_if] = STATE(272), + [sym_match] = STATE(258), + [sym_while] = STATE(258), + [sym_for] = STATE(258), + [sym_return] = STATE(258), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(156), - [sym_integer] = ACTIONS(158), - [sym_float] = ACTIONS(160), - [sym_string] = ACTIONS(160), - [anon_sym_true] = ACTIONS(162), - [anon_sym_false] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_none] = ACTIONS(166), - [anon_sym_some] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(172), - [anon_sym_assert] = ACTIONS(174), - [anon_sym_assert_equal] = ACTIONS(174), - [anon_sym_bash] = ACTIONS(174), - [anon_sym_download] = ACTIONS(174), - [anon_sym_either_or] = ACTIONS(174), - [anon_sym_fish] = ACTIONS(174), - [anon_sym_from_json] = ACTIONS(174), - [anon_sym_is_none] = ACTIONS(174), - [anon_sym_is_some] = ACTIONS(174), - [anon_sym_length] = ACTIONS(174), - [anon_sym_metadata] = ACTIONS(174), - [anon_sym_output] = ACTIONS(174), - [anon_sym_output_error] = ACTIONS(174), - [anon_sym_random] = ACTIONS(174), - [anon_sym_random_boolean] = ACTIONS(174), - [anon_sym_random_float] = ACTIONS(174), - [anon_sym_random_integer] = ACTIONS(174), - [anon_sym_read] = ACTIONS(174), - [anon_sym_to_json] = ACTIONS(174), - [anon_sym_write] = ACTIONS(174), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), + }, + [36] = { + [sym_block] = STATE(258), + [sym_statement] = STATE(290), + [sym_expression] = STATE(234), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(258), + [sym_index_assignment] = STATE(258), + [sym_if_else] = STATE(258), + [sym_if] = STATE(272), + [sym_match] = STATE(258), + [sym_while] = STATE(258), + [sym_for] = STATE(258), + [sym_return] = STATE(258), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), + [sym__identifier_pattern] = ACTIONS(154), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), + [anon_sym_if] = ACTIONS(140), + [anon_sym_match] = ACTIONS(142), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [37] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(252), - [sym_expression] = STATE(231), - [sym_identifier] = STATE(215), - [sym_value] = STATE(145), - [sym_boolean] = STATE(151), - [sym_list] = STATE(151), - [sym_map] = STATE(151), - [sym_option] = STATE(151), - [sym_index] = STATE(216), - [sym_math] = STATE(145), - [sym_logic] = STATE(145), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(142), - [sym_function_expression] = STATE(342), - [sym_function_call] = STATE(136), - [sym_yield] = STATE(136), - [sym_built_in_function] = STATE(152), + [sym_block] = STATE(258), + [sym_statement] = STATE(266), + [sym_expression] = STATE(114), + [sym__expression_kind] = STATE(96), + [sym_identifier] = STATE(111), + [sym_value] = STATE(96), + [sym_boolean] = STATE(94), + [sym_list] = STATE(94), + [sym_map] = STATE(94), + [sym_option] = STATE(94), + [sym_index] = STATE(112), + [sym_math] = STATE(96), + [sym_logic] = STATE(96), + [sym_assignment] = STATE(258), + [sym_index_assignment] = STATE(258), + [sym_if_else] = STATE(258), + [sym_if] = STATE(246), + [sym_match] = STATE(258), + [sym_while] = STATE(258), + [sym_for] = STATE(258), + [sym_return] = STATE(258), + [sym_function] = STATE(105), + [sym_function_expression] = STATE(361), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(95), [sym__identifier_pattern] = ACTIONS(120), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [sym_integer] = ACTIONS(126), - [sym_float] = ACTIONS(128), - [sym_string] = ACTIONS(128), - [anon_sym_true] = ACTIONS(130), - [anon_sym_false] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_none] = ACTIONS(134), - [anon_sym_some] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(126), + [sym_integer] = ACTIONS(128), + [sym_float] = ACTIONS(130), + [sym_string] = ACTIONS(130), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_none] = ACTIONS(136), + [anon_sym_some] = ACTIONS(138), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), [anon_sym_while] = ACTIONS(144), @@ -5258,466 +5338,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(152), }, [38] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(250), - [sym_expression] = STATE(112), - [sym_identifier] = STATE(109), - [sym_value] = STATE(92), - [sym_boolean] = STATE(96), - [sym_list] = STATE(96), - [sym_map] = STATE(96), - [sym_option] = STATE(96), - [sym_index] = STATE(110), - [sym_math] = STATE(92), - [sym_logic] = STATE(92), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(90), - [sym_function_expression] = STATE(346), - [sym_function_call] = STATE(99), - [sym_yield] = STATE(99), - [sym_built_in_function] = STATE(93), + [sym_block] = STATE(257), + [sym_statement] = STATE(261), + [sym_expression] = STATE(240), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(272), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(156), - [sym_integer] = ACTIONS(158), - [sym_float] = ACTIONS(160), - [sym_string] = ACTIONS(160), - [anon_sym_true] = ACTIONS(162), - [anon_sym_false] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_none] = ACTIONS(166), - [anon_sym_some] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), - [anon_sym_while] = ACTIONS(144), - [anon_sym_for] = ACTIONS(146), - [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(172), - [anon_sym_assert] = ACTIONS(174), - [anon_sym_assert_equal] = ACTIONS(174), - [anon_sym_bash] = ACTIONS(174), - [anon_sym_download] = ACTIONS(174), - [anon_sym_either_or] = ACTIONS(174), - [anon_sym_fish] = ACTIONS(174), - [anon_sym_from_json] = ACTIONS(174), - [anon_sym_is_none] = ACTIONS(174), - [anon_sym_is_some] = ACTIONS(174), - [anon_sym_length] = ACTIONS(174), - [anon_sym_metadata] = ACTIONS(174), - [anon_sym_output] = ACTIONS(174), - [anon_sym_output_error] = ACTIONS(174), - [anon_sym_random] = ACTIONS(174), - [anon_sym_random_boolean] = ACTIONS(174), - [anon_sym_random_float] = ACTIONS(174), - [anon_sym_random_integer] = ACTIONS(174), - [anon_sym_read] = ACTIONS(174), - [anon_sym_to_json] = ACTIONS(174), - [anon_sym_write] = ACTIONS(174), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [39] = { - [sym_block] = STATE(246), - [sym_statement] = STATE(249), - [sym_expression] = STATE(112), - [sym_identifier] = STATE(109), - [sym_value] = STATE(92), - [sym_boolean] = STATE(96), - [sym_list] = STATE(96), - [sym_map] = STATE(96), - [sym_option] = STATE(96), - [sym_index] = STATE(110), - [sym_math] = STATE(92), - [sym_logic] = STATE(92), - [sym_assignment] = STATE(246), - [sym_index_assignment] = STATE(246), - [sym_if_else] = STATE(246), - [sym_if] = STATE(236), - [sym_match] = STATE(246), - [sym_while] = STATE(246), - [sym_for] = STATE(246), - [sym_return] = STATE(246), - [sym_function] = STATE(90), - [sym_function_expression] = STATE(346), - [sym_function_call] = STATE(99), - [sym_yield] = STATE(99), - [sym_built_in_function] = STATE(93), - [sym__identifier_pattern] = ACTIONS(154), + [sym_block] = STATE(257), + [sym_statement] = STATE(255), + [sym_expression] = STATE(115), + [sym__expression_kind] = STATE(96), + [sym_identifier] = STATE(111), + [sym_value] = STATE(96), + [sym_boolean] = STATE(94), + [sym_list] = STATE(94), + [sym_map] = STATE(94), + [sym_option] = STATE(94), + [sym_index] = STATE(112), + [sym_math] = STATE(96), + [sym_logic] = STATE(96), + [sym_assignment] = STATE(257), + [sym_index_assignment] = STATE(257), + [sym_if_else] = STATE(257), + [sym_if] = STATE(246), + [sym_match] = STATE(257), + [sym_while] = STATE(257), + [sym_for] = STATE(257), + [sym_return] = STATE(257), + [sym_function] = STATE(105), + [sym_function_expression] = STATE(361), + [sym_function_call] = STATE(106), + [sym_yield] = STATE(106), + [sym_built_in_function] = STATE(95), + [sym__identifier_pattern] = ACTIONS(120), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(156), - [sym_integer] = ACTIONS(158), - [sym_float] = ACTIONS(160), - [sym_string] = ACTIONS(160), - [anon_sym_true] = ACTIONS(162), - [anon_sym_false] = ACTIONS(162), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_none] = ACTIONS(166), - [anon_sym_some] = ACTIONS(168), - [anon_sym_LPAREN] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(126), + [sym_integer] = ACTIONS(128), + [sym_float] = ACTIONS(130), + [sym_string] = ACTIONS(130), + [anon_sym_true] = ACTIONS(132), + [anon_sym_false] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_none] = ACTIONS(136), + [anon_sym_some] = ACTIONS(138), [anon_sym_if] = ACTIONS(140), [anon_sym_match] = ACTIONS(142), [anon_sym_while] = ACTIONS(144), [anon_sym_for] = ACTIONS(146), [anon_sym_asyncfor] = ACTIONS(148), - [anon_sym_return] = ACTIONS(172), - [anon_sym_assert] = ACTIONS(174), - [anon_sym_assert_equal] = ACTIONS(174), - [anon_sym_bash] = ACTIONS(174), - [anon_sym_download] = ACTIONS(174), - [anon_sym_either_or] = ACTIONS(174), - [anon_sym_fish] = ACTIONS(174), - [anon_sym_from_json] = ACTIONS(174), - [anon_sym_is_none] = ACTIONS(174), - [anon_sym_is_some] = ACTIONS(174), - [anon_sym_length] = ACTIONS(174), - [anon_sym_metadata] = ACTIONS(174), - [anon_sym_output] = ACTIONS(174), - [anon_sym_output_error] = ACTIONS(174), - [anon_sym_random] = ACTIONS(174), - [anon_sym_random_boolean] = ACTIONS(174), - [anon_sym_random_float] = ACTIONS(174), - [anon_sym_random_integer] = ACTIONS(174), - [anon_sym_read] = ACTIONS(174), - [anon_sym_to_json] = ACTIONS(174), - [anon_sym_write] = ACTIONS(174), + [anon_sym_return] = ACTIONS(150), + [anon_sym_assert] = ACTIONS(152), + [anon_sym_assert_equal] = ACTIONS(152), + [anon_sym_bash] = ACTIONS(152), + [anon_sym_download] = ACTIONS(152), + [anon_sym_either_or] = ACTIONS(152), + [anon_sym_fish] = ACTIONS(152), + [anon_sym_from_json] = ACTIONS(152), + [anon_sym_is_none] = ACTIONS(152), + [anon_sym_is_some] = ACTIONS(152), + [anon_sym_length] = ACTIONS(152), + [anon_sym_metadata] = ACTIONS(152), + [anon_sym_output] = ACTIONS(152), + [anon_sym_output_error] = ACTIONS(152), + [anon_sym_random] = ACTIONS(152), + [anon_sym_random_boolean] = ACTIONS(152), + [anon_sym_random_float] = ACTIONS(152), + [anon_sym_random_integer] = ACTIONS(152), + [anon_sym_read] = ACTIONS(152), + [anon_sym_to_json] = ACTIONS(152), + [anon_sym_write] = ACTIONS(152), }, [40] = { - [sym_block] = STATE(232), - [sym_statement] = STATE(222), - [sym_expression] = STATE(75), - [sym_identifier] = STATE(51), - [sym_value] = STATE(60), - [sym_boolean] = STATE(74), - [sym_list] = STATE(74), - [sym_map] = STATE(74), - [sym_option] = STATE(74), - [sym_index] = STATE(61), - [sym_math] = STATE(60), - [sym_logic] = STATE(60), - [sym_assignment] = STATE(232), - [sym_index_assignment] = STATE(232), - [sym_if_else] = STATE(232), - [sym_if] = STATE(201), - [sym_match] = STATE(232), - [sym_while] = STATE(232), - [sym_for] = STATE(232), - [sym_return] = STATE(232), - [sym_function] = STATE(63), - [sym_function_expression] = STATE(343), - [sym_function_call] = STATE(64), - [sym_yield] = STATE(64), - [sym_built_in_function] = STATE(50), - [sym__identifier_pattern] = ACTIONS(5), + [sym_block] = STATE(258), + [sym_statement] = STATE(287), + [sym_expression] = STATE(234), + [sym__expression_kind] = STATE(164), + [sym_identifier] = STATE(224), + [sym_value] = STATE(164), + [sym_boolean] = STATE(156), + [sym_list] = STATE(156), + [sym_map] = STATE(156), + [sym_option] = STATE(156), + [sym_index] = STATE(226), + [sym_math] = STATE(164), + [sym_logic] = STATE(164), + [sym_assignment] = STATE(258), + [sym_index_assignment] = STATE(258), + [sym_if_else] = STATE(258), + [sym_if] = STATE(272), + [sym_match] = STATE(258), + [sym_while] = STATE(258), + [sym_for] = STATE(258), + [sym_return] = STATE(258), + [sym_function] = STATE(167), + [sym_function_expression] = STATE(367), + [sym_function_call] = STATE(168), + [sym_yield] = STATE(168), + [sym_built_in_function] = STATE(155), + [sym__identifier_pattern] = ACTIONS(154), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(9), - [sym_integer] = ACTIONS(11), - [sym_float] = ACTIONS(13), - [sym_string] = ACTIONS(13), - [anon_sym_true] = ACTIONS(15), - [anon_sym_false] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_none] = ACTIONS(19), - [anon_sym_some] = ACTIONS(21), - [anon_sym_LPAREN] = 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_async] = ACTIONS(156), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(160), + [sym_integer] = ACTIONS(162), + [sym_float] = ACTIONS(164), + [sym_string] = ACTIONS(164), + [anon_sym_true] = ACTIONS(166), + [anon_sym_false] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_none] = ACTIONS(170), + [anon_sym_some] = ACTIONS(172), + [anon_sym_if] = ACTIONS(140), + [anon_sym_match] = ACTIONS(142), + [anon_sym_while] = ACTIONS(174), + [anon_sym_for] = ACTIONS(176), + [anon_sym_asyncfor] = ACTIONS(178), + [anon_sym_return] = ACTIONS(180), + [anon_sym_assert] = ACTIONS(182), + [anon_sym_assert_equal] = ACTIONS(182), + [anon_sym_bash] = ACTIONS(182), + [anon_sym_download] = ACTIONS(182), + [anon_sym_either_or] = ACTIONS(182), + [anon_sym_fish] = ACTIONS(182), + [anon_sym_from_json] = ACTIONS(182), + [anon_sym_is_none] = ACTIONS(182), + [anon_sym_is_some] = ACTIONS(182), + [anon_sym_length] = ACTIONS(182), + [anon_sym_metadata] = ACTIONS(182), + [anon_sym_output] = ACTIONS(182), + [anon_sym_output_error] = ACTIONS(182), + [anon_sym_random] = ACTIONS(182), + [anon_sym_random_boolean] = ACTIONS(182), + [anon_sym_random_float] = ACTIONS(182), + [anon_sym_random_integer] = ACTIONS(182), + [anon_sym_read] = ACTIONS(182), + [anon_sym_to_json] = ACTIONS(182), + [anon_sym_write] = ACTIONS(182), }, [41] = { - [sym_math_operator] = STATE(195), - [sym_logic_operator] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(176), - [sym__identifier_pattern] = ACTIONS(178), + [sym_math_operator] = STATE(180), + [sym_logic_operator] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(184), + [sym__identifier_pattern] = ACTIONS(186), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(176), - [anon_sym_RBRACE] = ACTIONS(176), - [anon_sym_SEMI] = ACTIONS(176), - [sym_integer] = ACTIONS(178), - [sym_float] = ACTIONS(176), - [sym_string] = ACTIONS(176), - [anon_sym_true] = ACTIONS(178), - [anon_sym_false] = ACTIONS(178), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_none] = ACTIONS(178), - [anon_sym_some] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_COLON] = ACTIONS(176), - [anon_sym_DOT_DOT] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_STAR] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(176), - [anon_sym_PERCENT] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_if] = ACTIONS(178), - [anon_sym_match] = ACTIONS(178), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(178), - [anon_sym_asyncfor] = ACTIONS(176), - [anon_sym_return] = ACTIONS(178), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_assert] = ACTIONS(178), - [anon_sym_assert_equal] = ACTIONS(178), - [anon_sym_bash] = ACTIONS(178), - [anon_sym_download] = ACTIONS(178), - [anon_sym_either_or] = ACTIONS(178), - [anon_sym_fish] = ACTIONS(178), - [anon_sym_from_json] = ACTIONS(178), - [anon_sym_is_none] = ACTIONS(178), - [anon_sym_is_some] = ACTIONS(178), - [anon_sym_length] = ACTIONS(178), - [anon_sym_metadata] = ACTIONS(178), - [anon_sym_output] = ACTIONS(178), - [anon_sym_output_error] = ACTIONS(178), - [anon_sym_random] = ACTIONS(178), - [anon_sym_random_boolean] = ACTIONS(178), - [anon_sym_random_float] = ACTIONS(178), - [anon_sym_random_integer] = ACTIONS(178), - [anon_sym_read] = ACTIONS(178), - [anon_sym_to_json] = ACTIONS(178), - [anon_sym_write] = ACTIONS(178), + [anon_sym_async] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(184), + [anon_sym_RBRACE] = ACTIONS(184), + [anon_sym_SEMI] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(184), + [sym_string] = ACTIONS(184), + [anon_sym_true] = ACTIONS(186), + [anon_sym_false] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(184), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_none] = ACTIONS(186), + [anon_sym_some] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(184), + [anon_sym_DOT_DOT] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(186), + [anon_sym_STAR] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(184), + [anon_sym_PERCENT] = ACTIONS(184), + [anon_sym_EQ_EQ] = ACTIONS(184), + [anon_sym_BANG_EQ] = ACTIONS(184), + [anon_sym_AMP_AMP] = ACTIONS(184), + [anon_sym_PIPE_PIPE] = ACTIONS(184), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_GT_EQ] = ACTIONS(184), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_PLUS_EQ] = ACTIONS(184), + [anon_sym_DASH_EQ] = ACTIONS(184), + [anon_sym_if] = ACTIONS(186), + [anon_sym_match] = ACTIONS(186), + [anon_sym_while] = ACTIONS(186), + [anon_sym_for] = ACTIONS(186), + [anon_sym_asyncfor] = ACTIONS(184), + [anon_sym_return] = ACTIONS(186), + [anon_sym_DASH_GT] = 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_math_operator] = STATE(195), - [sym_logic_operator] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(176), - [sym__identifier_pattern] = ACTIONS(178), + [sym_math_operator] = STATE(180), + [sym_logic_operator] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(188), + [sym__identifier_pattern] = ACTIONS(190), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(178), - [anon_sym_LBRACE] = ACTIONS(176), - [anon_sym_RBRACE] = ACTIONS(176), - [anon_sym_SEMI] = ACTIONS(176), - [sym_integer] = ACTIONS(178), - [sym_float] = ACTIONS(176), - [sym_string] = ACTIONS(176), - [anon_sym_true] = ACTIONS(178), - [anon_sym_false] = ACTIONS(178), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_none] = ACTIONS(178), - [anon_sym_some] = ACTIONS(178), - [anon_sym_LPAREN] = ACTIONS(176), - [anon_sym_COLON] = ACTIONS(176), - [anon_sym_DOT_DOT] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_STAR] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(176), - [anon_sym_PERCENT] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_if] = ACTIONS(178), - [anon_sym_match] = ACTIONS(178), - [anon_sym_while] = ACTIONS(178), - [anon_sym_for] = ACTIONS(178), - [anon_sym_asyncfor] = ACTIONS(176), - [anon_sym_return] = ACTIONS(178), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_assert] = ACTIONS(178), - [anon_sym_assert_equal] = ACTIONS(178), - [anon_sym_bash] = ACTIONS(178), - [anon_sym_download] = ACTIONS(178), - [anon_sym_either_or] = ACTIONS(178), - [anon_sym_fish] = ACTIONS(178), - [anon_sym_from_json] = ACTIONS(178), - [anon_sym_is_none] = ACTIONS(178), - [anon_sym_is_some] = ACTIONS(178), - [anon_sym_length] = ACTIONS(178), - [anon_sym_metadata] = ACTIONS(178), - [anon_sym_output] = ACTIONS(178), - [anon_sym_output_error] = ACTIONS(178), - [anon_sym_random] = ACTIONS(178), - [anon_sym_random_boolean] = ACTIONS(178), - [anon_sym_random_float] = ACTIONS(178), - [anon_sym_random_integer] = ACTIONS(178), - [anon_sym_read] = ACTIONS(178), - [anon_sym_to_json] = ACTIONS(178), - [anon_sym_write] = ACTIONS(178), + [anon_sym_async] = ACTIONS(190), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_SEMI] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [sym_integer] = ACTIONS(190), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(188), + [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(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_STAR] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(188), + [anon_sym_PERCENT] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_if] = ACTIONS(190), + [anon_sym_match] = ACTIONS(190), + [anon_sym_while] = ACTIONS(190), + [anon_sym_for] = ACTIONS(190), + [anon_sym_asyncfor] = ACTIONS(188), + [anon_sym_return] = ACTIONS(190), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_assert] = ACTIONS(190), + [anon_sym_assert_equal] = ACTIONS(190), + [anon_sym_bash] = ACTIONS(190), + [anon_sym_download] = ACTIONS(190), + [anon_sym_either_or] = ACTIONS(190), + [anon_sym_fish] = ACTIONS(190), + [anon_sym_from_json] = ACTIONS(190), + [anon_sym_is_none] = ACTIONS(190), + [anon_sym_is_some] = ACTIONS(190), + [anon_sym_length] = ACTIONS(190), + [anon_sym_metadata] = ACTIONS(190), + [anon_sym_output] = ACTIONS(190), + [anon_sym_output_error] = ACTIONS(190), + [anon_sym_random] = ACTIONS(190), + [anon_sym_random_boolean] = ACTIONS(190), + [anon_sym_random_float] = ACTIONS(190), + [anon_sym_random_integer] = ACTIONS(190), + [anon_sym_read] = ACTIONS(190), + [anon_sym_to_json] = ACTIONS(190), + [anon_sym_write] = ACTIONS(190), }, [43] = { - [sym_math_operator] = STATE(195), - [sym_logic_operator] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(182), - [sym__identifier_pattern] = ACTIONS(184), + [sym_math_operator] = STATE(180), + [sym_logic_operator] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(184), + [sym__identifier_pattern] = ACTIONS(186), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(182), - [sym_integer] = ACTIONS(184), - [sym_float] = ACTIONS(182), - [sym_string] = ACTIONS(182), - [anon_sym_true] = ACTIONS(184), - [anon_sym_false] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(184), - [anon_sym_none] = ACTIONS(184), - [anon_sym_some] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(182), - [anon_sym_COLON] = ACTIONS(186), - [anon_sym_DOT_DOT] = ACTIONS(182), - [anon_sym_PLUS] = ACTIONS(188), - [anon_sym_DASH] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_PERCENT] = ACTIONS(190), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_PLUS_EQ] = ACTIONS(182), - [anon_sym_DASH_EQ] = ACTIONS(182), - [anon_sym_if] = ACTIONS(184), - [anon_sym_match] = ACTIONS(184), - [anon_sym_while] = ACTIONS(184), - [anon_sym_for] = ACTIONS(184), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_assert] = ACTIONS(184), - [anon_sym_assert_equal] = ACTIONS(184), - [anon_sym_bash] = ACTIONS(184), - [anon_sym_download] = ACTIONS(184), - [anon_sym_either_or] = ACTIONS(184), - [anon_sym_fish] = ACTIONS(184), - [anon_sym_from_json] = ACTIONS(184), - [anon_sym_is_none] = ACTIONS(184), - [anon_sym_is_some] = ACTIONS(184), - [anon_sym_length] = ACTIONS(184), - [anon_sym_metadata] = ACTIONS(184), - [anon_sym_output] = ACTIONS(184), - [anon_sym_output_error] = ACTIONS(184), - [anon_sym_random] = ACTIONS(184), - [anon_sym_random_boolean] = ACTIONS(184), - [anon_sym_random_float] = ACTIONS(184), - [anon_sym_random_integer] = ACTIONS(184), - [anon_sym_read] = ACTIONS(184), - [anon_sym_to_json] = ACTIONS(184), - [anon_sym_write] = ACTIONS(184), + [anon_sym_async] = ACTIONS(186), + [anon_sym_LBRACE] = ACTIONS(184), + [anon_sym_RBRACE] = ACTIONS(184), + [anon_sym_SEMI] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(184), + [sym_integer] = ACTIONS(186), + [sym_float] = ACTIONS(184), + [sym_string] = ACTIONS(184), + [anon_sym_true] = ACTIONS(186), + [anon_sym_false] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(184), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_none] = ACTIONS(186), + [anon_sym_some] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(184), + [anon_sym_DOT_DOT] = ACTIONS(192), + [anon_sym_PLUS] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(186), + [anon_sym_STAR] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(184), + [anon_sym_PERCENT] = ACTIONS(184), + [anon_sym_EQ_EQ] = ACTIONS(184), + [anon_sym_BANG_EQ] = ACTIONS(184), + [anon_sym_AMP_AMP] = ACTIONS(184), + [anon_sym_PIPE_PIPE] = ACTIONS(184), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_GT_EQ] = ACTIONS(184), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_PLUS_EQ] = ACTIONS(184), + [anon_sym_DASH_EQ] = ACTIONS(184), + [anon_sym_if] = ACTIONS(186), + [anon_sym_match] = ACTIONS(186), + [anon_sym_while] = ACTIONS(186), + [anon_sym_for] = ACTIONS(186), + [anon_sym_asyncfor] = ACTIONS(184), + [anon_sym_return] = ACTIONS(186), + [anon_sym_DASH_GT] = 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), }, [44] = { - [sym_math_operator] = STATE(195), - [sym_logic_operator] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(198), - [sym__identifier_pattern] = ACTIONS(200), + [sym_math_operator] = STATE(180), + [sym_logic_operator] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(194), + [sym__identifier_pattern] = ACTIONS(196), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(198), - [anon_sym_SEMI] = 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_LPAREN] = ACTIONS(198), + [anon_sym_async] = ACTIONS(196), + [anon_sym_LBRACE] = ACTIONS(194), + [anon_sym_RBRACE] = ACTIONS(194), + [anon_sym_SEMI] = ACTIONS(194), + [anon_sym_LPAREN] = 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(198), - [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(198), - [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_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(200), + [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), }, [45] = { - [sym_math_operator] = STATE(195), - [sym_logic_operator] = STATE(180), + [sym_math_operator] = STATE(180), + [sym_logic_operator] = STATE(211), [ts_builtin_sym_end] = ACTIONS(202), [sym__identifier_pattern] = ACTIONS(204), [sym__comment] = ACTIONS(3), @@ -5725,6 +5808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(202), [anon_sym_RBRACE] = ACTIONS(202), [anon_sym_SEMI] = ACTIONS(202), + [anon_sym_LPAREN] = ACTIONS(202), [sym_integer] = ACTIONS(204), [sym_float] = ACTIONS(202), [sym_string] = ACTIONS(202), @@ -5734,8 +5818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(204), [anon_sym_none] = ACTIONS(204), [anon_sym_some] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_COLON] = ACTIONS(186), + [anon_sym_COLON] = ACTIONS(198), [anon_sym_DOT_DOT] = ACTIONS(202), [anon_sym_PLUS] = ACTIONS(204), [anon_sym_DASH] = ACTIONS(204), @@ -5758,7 +5841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(204), [anon_sym_asyncfor] = ACTIONS(202), [anon_sym_return] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(200), [anon_sym_assert] = ACTIONS(204), [anon_sym_assert_equal] = ACTIONS(204), [anon_sym_bash] = ACTIONS(204), @@ -5781,8 +5864,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(204), }, [46] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(206), + [sym__identifier_pattern] = ACTIONS(208), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(208), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_RBRACE] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(206), + [anon_sym_LPAREN] = 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(206), + [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_in] = ACTIONS(208), + [anon_sym_return] = ACTIONS(208), + [anon_sym_DASH_GT] = ACTIONS(206), + [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), + }, + [47] = { + [sym_math_operator] = STATE(201), + [sym_logic_operator] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(194), + [sym__identifier_pattern] = ACTIONS(196), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(196), + [anon_sym_LBRACE] = ACTIONS(194), + [anon_sym_RBRACE] = ACTIONS(194), + [anon_sym_SEMI] = ACTIONS(194), + [anon_sym_LPAREN] = 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(210), + [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(212), + [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), + }, + [48] = { + [sym_math_operator] = STATE(201), + [sym_logic_operator] = STATE(197), [ts_builtin_sym_end] = ACTIONS(202), [sym__identifier_pattern] = ACTIONS(204), [sym__comment] = ACTIONS(3), @@ -5790,6 +6001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(202), [anon_sym_RBRACE] = ACTIONS(202), [anon_sym_SEMI] = ACTIONS(202), + [anon_sym_LPAREN] = ACTIONS(202), [sym_integer] = ACTIONS(204), [sym_float] = ACTIONS(202), [sym_string] = ACTIONS(202), @@ -5799,8 +6011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(204), [anon_sym_none] = ACTIONS(204), [anon_sym_some] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(202), - [anon_sym_COLON] = ACTIONS(206), + [anon_sym_COLON] = ACTIONS(210), [anon_sym_PLUS] = ACTIONS(204), [anon_sym_DASH] = ACTIONS(204), [anon_sym_STAR] = ACTIONS(202), @@ -5822,7 +6033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(204), [anon_sym_asyncfor] = ACTIONS(202), [anon_sym_return] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_DASH_GT] = ACTIONS(212), [anon_sym_assert] = ACTIONS(204), [anon_sym_assert_equal] = ACTIONS(204), [anon_sym_bash] = ACTIONS(204), @@ -5844,197 +6055,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(204), [anon_sym_write] = ACTIONS(204), }, - [47] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(182), - [sym__identifier_pattern] = ACTIONS(184), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(184), - [anon_sym_LBRACE] = ACTIONS(182), - [anon_sym_RBRACE] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(182), - [sym_integer] = ACTIONS(184), - [sym_float] = ACTIONS(182), - [sym_string] = ACTIONS(182), - [anon_sym_true] = ACTIONS(184), - [anon_sym_false] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(184), - [anon_sym_none] = ACTIONS(184), - [anon_sym_some] = ACTIONS(184), - [anon_sym_LPAREN] = ACTIONS(182), - [anon_sym_COLON] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(188), - [anon_sym_DASH] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_PERCENT] = ACTIONS(190), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_PLUS_EQ] = ACTIONS(182), - [anon_sym_DASH_EQ] = ACTIONS(182), - [anon_sym_if] = ACTIONS(184), - [anon_sym_match] = ACTIONS(184), - [anon_sym_while] = ACTIONS(184), - [anon_sym_for] = ACTIONS(184), - [anon_sym_asyncfor] = ACTIONS(182), - [anon_sym_return] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(208), - [anon_sym_assert] = ACTIONS(184), - [anon_sym_assert_equal] = ACTIONS(184), - [anon_sym_bash] = ACTIONS(184), - [anon_sym_download] = ACTIONS(184), - [anon_sym_either_or] = ACTIONS(184), - [anon_sym_fish] = ACTIONS(184), - [anon_sym_from_json] = ACTIONS(184), - [anon_sym_is_none] = ACTIONS(184), - [anon_sym_is_some] = ACTIONS(184), - [anon_sym_length] = ACTIONS(184), - [anon_sym_metadata] = ACTIONS(184), - [anon_sym_output] = ACTIONS(184), - [anon_sym_output_error] = ACTIONS(184), - [anon_sym_random] = ACTIONS(184), - [anon_sym_random_boolean] = ACTIONS(184), - [anon_sym_random_float] = ACTIONS(184), - [anon_sym_random_integer] = ACTIONS(184), - [anon_sym_read] = ACTIONS(184), - [anon_sym_to_json] = ACTIONS(184), - [anon_sym_write] = ACTIONS(184), - }, - [48] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(198), - [sym__identifier_pattern] = ACTIONS(200), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(200), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(198), - [anon_sym_SEMI] = 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_LPAREN] = ACTIONS(198), - [anon_sym_COLON] = 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(198), - [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), - }, [49] = { - [ts_builtin_sym_end] = ACTIONS(210), - [sym__identifier_pattern] = ACTIONS(212), + [sym_math_operator] = STATE(201), + [sym_logic_operator] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(188), + [sym__identifier_pattern] = ACTIONS(190), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_SEMI] = 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(212), - [anon_sym_none] = ACTIONS(212), - [anon_sym_some] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(210), - [anon_sym_DOT_DOT] = 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(210), - [anon_sym_DASH_EQ] = ACTIONS(210), - [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_in] = ACTIONS(212), - [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), + [anon_sym_async] = ACTIONS(190), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_SEMI] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [sym_integer] = ACTIONS(190), + [sym_float] = ACTIONS(188), + [sym_string] = ACTIONS(188), + [anon_sym_true] = ACTIONS(190), + [anon_sym_false] = ACTIONS(190), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_none] = ACTIONS(190), + [anon_sym_some] = ACTIONS(190), + [anon_sym_COLON] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_STAR] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(188), + [anon_sym_PERCENT] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_if] = ACTIONS(190), + [anon_sym_match] = ACTIONS(190), + [anon_sym_while] = ACTIONS(190), + [anon_sym_for] = ACTIONS(190), + [anon_sym_asyncfor] = ACTIONS(188), + [anon_sym_return] = ACTIONS(190), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_assert] = ACTIONS(190), + [anon_sym_assert_equal] = ACTIONS(190), + [anon_sym_bash] = ACTIONS(190), + [anon_sym_download] = ACTIONS(190), + [anon_sym_either_or] = ACTIONS(190), + [anon_sym_fish] = ACTIONS(190), + [anon_sym_from_json] = ACTIONS(190), + [anon_sym_is_none] = ACTIONS(190), + [anon_sym_is_some] = ACTIONS(190), + [anon_sym_length] = ACTIONS(190), + [anon_sym_metadata] = ACTIONS(190), + [anon_sym_output] = ACTIONS(190), + [anon_sym_output_error] = ACTIONS(190), + [anon_sym_random] = ACTIONS(190), + [anon_sym_random_boolean] = ACTIONS(190), + [anon_sym_random_float] = ACTIONS(190), + [anon_sym_random_integer] = ACTIONS(190), + [anon_sym_read] = ACTIONS(190), + [anon_sym_to_json] = ACTIONS(190), + [anon_sym_write] = ACTIONS(190), }, [50] = { [ts_builtin_sym_end] = ACTIONS(214), @@ -6044,6 +6127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(214), [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_SEMI] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(214), [sym_integer] = ACTIONS(216), [sym_float] = ACTIONS(214), [sym_string] = ACTIONS(214), @@ -6053,7 +6137,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(216), [anon_sym_none] = ACTIONS(216), [anon_sym_some] = ACTIONS(216), - [anon_sym_LPAREN] = ACTIONS(214), [anon_sym_COLON] = ACTIONS(214), [anon_sym_DOT_DOT] = ACTIONS(214), [anon_sym_PLUS] = ACTIONS(216), @@ -6101,8 +6184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(216), }, [51] = { - [sym_assignment_operator] = STATE(40), - [sym_type_definition] = STATE(322), + [sym_assignment_operator] = STATE(27), + [sym_type_definition] = STATE(338), [ts_builtin_sym_end] = ACTIONS(218), [sym__identifier_pattern] = ACTIONS(220), [sym__comment] = ACTIONS(3), @@ -6110,16 +6193,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(218), [anon_sym_RBRACE] = ACTIONS(218), [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(222), [sym_integer] = ACTIONS(220), [sym_float] = ACTIONS(218), [sym_string] = ACTIONS(218), [anon_sym_true] = ACTIONS(220), [anon_sym_false] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(222), + [anon_sym_EQ] = ACTIONS(224), [anon_sym_none] = ACTIONS(220), [anon_sym_some] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(224), [anon_sym_COLON] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(220), [anon_sym_DASH] = ACTIONS(220), @@ -6172,6 +6255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(230), [anon_sym_RBRACE] = ACTIONS(230), [anon_sym_SEMI] = ACTIONS(230), + [anon_sym_LPAREN] = ACTIONS(230), [sym_integer] = ACTIONS(232), [sym_float] = ACTIONS(230), [sym_string] = ACTIONS(230), @@ -6181,7 +6265,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(232), [anon_sym_none] = ACTIONS(232), [anon_sym_some] = ACTIONS(232), - [anon_sym_LPAREN] = ACTIONS(230), [anon_sym_COLON] = ACTIONS(230), [anon_sym_DOT_DOT] = ACTIONS(230), [anon_sym_PLUS] = ACTIONS(232), @@ -6235,6 +6318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(234), [anon_sym_RBRACE] = ACTIONS(234), [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN] = ACTIONS(222), [sym_integer] = ACTIONS(236), [sym_float] = ACTIONS(234), [sym_string] = ACTIONS(234), @@ -6244,7 +6328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(236), [anon_sym_none] = ACTIONS(236), [anon_sym_some] = ACTIONS(236), - [anon_sym_LPAREN] = ACTIONS(234), [anon_sym_COLON] = ACTIONS(234), [anon_sym_DOT_DOT] = ACTIONS(234), [anon_sym_PLUS] = ACTIONS(236), @@ -6298,6 +6381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(238), [anon_sym_RBRACE] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_LPAREN] = ACTIONS(238), [sym_integer] = ACTIONS(240), [sym_float] = ACTIONS(238), [sym_string] = ACTIONS(238), @@ -6307,7 +6391,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(240), [anon_sym_none] = ACTIONS(240), [anon_sym_some] = ACTIONS(240), - [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COLON] = ACTIONS(238), [anon_sym_DOT_DOT] = ACTIONS(238), [anon_sym_PLUS] = ACTIONS(240), @@ -6361,6 +6444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(242), [anon_sym_RBRACE] = ACTIONS(242), [anon_sym_SEMI] = ACTIONS(242), + [anon_sym_LPAREN] = ACTIONS(242), [sym_integer] = ACTIONS(244), [sym_float] = ACTIONS(242), [sym_string] = ACTIONS(242), @@ -6370,7 +6454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(244), [anon_sym_none] = ACTIONS(244), [anon_sym_some] = ACTIONS(244), - [anon_sym_LPAREN] = ACTIONS(242), [anon_sym_COLON] = ACTIONS(242), [anon_sym_DOT_DOT] = ACTIONS(242), [anon_sym_PLUS] = ACTIONS(244), @@ -6424,6 +6507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(246), [anon_sym_RBRACE] = ACTIONS(246), [anon_sym_SEMI] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(246), [sym_integer] = ACTIONS(248), [sym_float] = ACTIONS(246), [sym_string] = ACTIONS(246), @@ -6433,7 +6517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(248), [anon_sym_none] = ACTIONS(248), [anon_sym_some] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(246), [anon_sym_COLON] = ACTIONS(246), [anon_sym_DOT_DOT] = ACTIONS(246), [anon_sym_PLUS] = ACTIONS(248), @@ -6480,110 +6563,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(248), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(224), - [sym__identifier_pattern] = ACTIONS(250), + [ts_builtin_sym_end] = ACTIONS(218), + [sym__identifier_pattern] = ACTIONS(220), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(224), - [sym_integer] = ACTIONS(250), - [sym_float] = ACTIONS(224), - [sym_string] = ACTIONS(224), - [anon_sym_true] = ACTIONS(250), - [anon_sym_false] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(224), - [anon_sym_EQ] = ACTIONS(250), - [anon_sym_none] = ACTIONS(250), - [anon_sym_some] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(224), - [anon_sym_SLASH] = ACTIONS(224), - [anon_sym_PERCENT] = ACTIONS(224), - [anon_sym_EQ_EQ] = ACTIONS(224), - [anon_sym_BANG_EQ] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(224), - [anon_sym_LT_EQ] = ACTIONS(224), - [anon_sym_PLUS_EQ] = ACTIONS(224), - [anon_sym_DASH_EQ] = ACTIONS(224), - [anon_sym_if] = ACTIONS(250), - [anon_sym_match] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_asyncfor] = ACTIONS(224), - [anon_sym_return] = ACTIONS(250), - [anon_sym_DASH_GT] = ACTIONS(224), - [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), + [anon_sym_async] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(222), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(218), + [sym_string] = ACTIONS(218), + [anon_sym_true] = ACTIONS(220), + [anon_sym_false] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_none] = ACTIONS(220), + [anon_sym_some] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_DOT_DOT] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(218), + [anon_sym_SLASH] = ACTIONS(218), + [anon_sym_PERCENT] = ACTIONS(218), + [anon_sym_EQ_EQ] = ACTIONS(218), + [anon_sym_BANG_EQ] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT_EQ] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(218), + [anon_sym_DASH_EQ] = ACTIONS(218), + [anon_sym_if] = ACTIONS(220), + [anon_sym_match] = ACTIONS(220), + [anon_sym_while] = ACTIONS(220), + [anon_sym_for] = ACTIONS(220), + [anon_sym_asyncfor] = ACTIONS(218), + [anon_sym_return] = ACTIONS(220), + [anon_sym_DASH_GT] = ACTIONS(218), + [anon_sym_assert] = ACTIONS(220), + [anon_sym_assert_equal] = ACTIONS(220), + [anon_sym_bash] = ACTIONS(220), + [anon_sym_download] = ACTIONS(220), + [anon_sym_either_or] = ACTIONS(220), + [anon_sym_fish] = ACTIONS(220), + [anon_sym_from_json] = ACTIONS(220), + [anon_sym_is_none] = ACTIONS(220), + [anon_sym_is_some] = ACTIONS(220), + [anon_sym_length] = ACTIONS(220), + [anon_sym_metadata] = ACTIONS(220), + [anon_sym_output] = ACTIONS(220), + [anon_sym_output_error] = ACTIONS(220), + [anon_sym_random] = ACTIONS(220), + [anon_sym_random_boolean] = ACTIONS(220), + [anon_sym_random_float] = ACTIONS(220), + [anon_sym_random_integer] = ACTIONS(220), + [anon_sym_read] = ACTIONS(220), + [anon_sym_to_json] = ACTIONS(220), + [anon_sym_write] = ACTIONS(220), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(252), + [ts_builtin_sym_end] = ACTIONS(250), + [sym__identifier_pattern] = ACTIONS(252), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LPAREN] = 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), + }, + [59] = { + [ts_builtin_sym_end] = ACTIONS(222), [sym__identifier_pattern] = ACTIONS(254), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_LPAREN] = ACTIONS(222), [sym_integer] = ACTIONS(254), - [sym_float] = ACTIONS(252), - [sym_string] = ACTIONS(252), + [sym_float] = ACTIONS(222), + [sym_string] = ACTIONS(222), [anon_sym_true] = ACTIONS(254), [anon_sym_false] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(222), [anon_sym_EQ] = ACTIONS(254), [anon_sym_none] = ACTIONS(254), [anon_sym_some] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_COLON] = ACTIONS(252), - [anon_sym_DOT_DOT] = ACTIONS(252), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(222), [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_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(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_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(254), [anon_sym_match] = ACTIONS(254), [anon_sym_while] = ACTIONS(254), [anon_sym_for] = ACTIONS(254), - [anon_sym_asyncfor] = ACTIONS(252), + [anon_sym_asyncfor] = ACTIONS(222), [anon_sym_return] = ACTIONS(254), - [anon_sym_DASH_GT] = ACTIONS(252), + [anon_sym_DASH_GT] = ACTIONS(222), [anon_sym_assert] = ACTIONS(254), [anon_sym_assert_equal] = ACTIONS(254), [anon_sym_bash] = ACTIONS(254), @@ -6605,7 +6751,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(254), [anon_sym_write] = ACTIONS(254), }, - [59] = { + [60] = { + [ts_builtin_sym_end] = ACTIONS(222), + [sym__identifier_pattern] = ACTIONS(254), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(254), + [anon_sym_LBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_LPAREN] = ACTIONS(222), + [sym_integer] = ACTIONS(254), + [sym_float] = ACTIONS(222), + [sym_string] = ACTIONS(222), + [anon_sym_true] = ACTIONS(254), + [anon_sym_false] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(222), + [anon_sym_EQ] = ACTIONS(254), + [anon_sym_none] = ACTIONS(254), + [anon_sym_some] = ACTIONS(254), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(222), + [anon_sym_PLUS] = ACTIONS(254), + [anon_sym_DASH] = ACTIONS(254), + [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(254), + [anon_sym_LT] = ACTIONS(254), + [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(254), + [anon_sym_match] = ACTIONS(254), + [anon_sym_while] = ACTIONS(254), + [anon_sym_for] = ACTIONS(254), + [anon_sym_asyncfor] = ACTIONS(222), + [anon_sym_return] = ACTIONS(254), + [anon_sym_DASH_GT] = ACTIONS(222), + [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), @@ -6613,6 +6822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(256), [anon_sym_RBRACE] = ACTIONS(256), [anon_sym_SEMI] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(256), [sym_integer] = ACTIONS(258), [sym_float] = ACTIONS(256), [sym_string] = ACTIONS(256), @@ -6622,7 +6832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(258), [anon_sym_none] = ACTIONS(258), [anon_sym_some] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), [anon_sym_COLON] = ACTIONS(256), [anon_sym_DOT_DOT] = ACTIONS(256), [anon_sym_PLUS] = ACTIONS(258), @@ -6668,196 +6877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(258), [anon_sym_write] = ACTIONS(258), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(218), - [sym__identifier_pattern] = ACTIONS(220), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_SEMI] = ACTIONS(218), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(218), - [sym_string] = ACTIONS(218), - [anon_sym_true] = ACTIONS(220), - [anon_sym_false] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_none] = ACTIONS(220), - [anon_sym_some] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(218), - [anon_sym_SLASH] = ACTIONS(218), - [anon_sym_PERCENT] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(218), - [anon_sym_DASH_EQ] = ACTIONS(218), - [anon_sym_if] = ACTIONS(220), - [anon_sym_match] = ACTIONS(220), - [anon_sym_while] = ACTIONS(220), - [anon_sym_for] = ACTIONS(220), - [anon_sym_asyncfor] = ACTIONS(218), - [anon_sym_return] = ACTIONS(220), - [anon_sym_DASH_GT] = ACTIONS(218), - [anon_sym_assert] = ACTIONS(220), - [anon_sym_assert_equal] = ACTIONS(220), - [anon_sym_bash] = ACTIONS(220), - [anon_sym_download] = ACTIONS(220), - [anon_sym_either_or] = ACTIONS(220), - [anon_sym_fish] = ACTIONS(220), - [anon_sym_from_json] = ACTIONS(220), - [anon_sym_is_none] = ACTIONS(220), - [anon_sym_is_some] = ACTIONS(220), - [anon_sym_length] = ACTIONS(220), - [anon_sym_metadata] = ACTIONS(220), - [anon_sym_output] = ACTIONS(220), - [anon_sym_output_error] = ACTIONS(220), - [anon_sym_random] = ACTIONS(220), - [anon_sym_random_boolean] = ACTIONS(220), - [anon_sym_random_float] = ACTIONS(220), - [anon_sym_random_integer] = ACTIONS(220), - [anon_sym_read] = ACTIONS(220), - [anon_sym_to_json] = ACTIONS(220), - [anon_sym_write] = ACTIONS(220), - }, - [61] = { - [sym_assignment_operator] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(218), - [sym__identifier_pattern] = ACTIONS(220), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_SEMI] = ACTIONS(218), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(218), - [sym_string] = ACTIONS(218), - [anon_sym_true] = ACTIONS(220), - [anon_sym_false] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(222), - [anon_sym_none] = ACTIONS(220), - [anon_sym_some] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(218), - [anon_sym_SLASH] = ACTIONS(218), - [anon_sym_PERCENT] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(228), - [anon_sym_DASH_EQ] = ACTIONS(228), - [anon_sym_if] = ACTIONS(220), - [anon_sym_match] = ACTIONS(220), - [anon_sym_while] = ACTIONS(220), - [anon_sym_for] = ACTIONS(220), - [anon_sym_asyncfor] = ACTIONS(218), - [anon_sym_return] = ACTIONS(220), - [anon_sym_DASH_GT] = ACTIONS(218), - [anon_sym_assert] = ACTIONS(220), - [anon_sym_assert_equal] = ACTIONS(220), - [anon_sym_bash] = ACTIONS(220), - [anon_sym_download] = ACTIONS(220), - [anon_sym_either_or] = ACTIONS(220), - [anon_sym_fish] = ACTIONS(220), - [anon_sym_from_json] = ACTIONS(220), - [anon_sym_is_none] = ACTIONS(220), - [anon_sym_is_some] = ACTIONS(220), - [anon_sym_length] = ACTIONS(220), - [anon_sym_metadata] = ACTIONS(220), - [anon_sym_output] = ACTIONS(220), - [anon_sym_output_error] = ACTIONS(220), - [anon_sym_random] = ACTIONS(220), - [anon_sym_random_boolean] = ACTIONS(220), - [anon_sym_random_float] = ACTIONS(220), - [anon_sym_random_integer] = ACTIONS(220), - [anon_sym_read] = ACTIONS(220), - [anon_sym_to_json] = ACTIONS(220), - [anon_sym_write] = ACTIONS(220), - }, [62] = { - [ts_builtin_sym_end] = ACTIONS(224), - [sym__identifier_pattern] = ACTIONS(250), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(224), - [sym_integer] = ACTIONS(250), - [sym_float] = ACTIONS(224), - [sym_string] = ACTIONS(224), - [anon_sym_true] = ACTIONS(250), - [anon_sym_false] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(224), - [anon_sym_EQ] = ACTIONS(250), - [anon_sym_none] = ACTIONS(250), - [anon_sym_some] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_DOT_DOT] = ACTIONS(224), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(224), - [anon_sym_SLASH] = ACTIONS(224), - [anon_sym_PERCENT] = ACTIONS(224), - [anon_sym_EQ_EQ] = ACTIONS(224), - [anon_sym_BANG_EQ] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(224), - [anon_sym_LT_EQ] = ACTIONS(224), - [anon_sym_PLUS_EQ] = ACTIONS(224), - [anon_sym_DASH_EQ] = ACTIONS(224), - [anon_sym_if] = ACTIONS(250), - [anon_sym_match] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_asyncfor] = ACTIONS(224), - [anon_sym_return] = ACTIONS(250), - [anon_sym_DASH_GT] = ACTIONS(224), - [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), - }, - [63] = { [ts_builtin_sym_end] = ACTIONS(260), [sym__identifier_pattern] = ACTIONS(262), [sym__comment] = ACTIONS(3), @@ -6865,6 +6885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(260), [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(260), [sym_integer] = ACTIONS(262), [sym_float] = ACTIONS(260), [sym_string] = ACTIONS(260), @@ -6874,7 +6895,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(262), [anon_sym_none] = ACTIONS(262), [anon_sym_some] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(224), [anon_sym_COLON] = ACTIONS(260), [anon_sym_DOT_DOT] = ACTIONS(260), [anon_sym_PLUS] = ACTIONS(262), @@ -6920,88 +6940,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(262), [anon_sym_write] = ACTIONS(262), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(218), - [sym__identifier_pattern] = ACTIONS(220), + [63] = { + [ts_builtin_sym_end] = ACTIONS(264), + [sym__identifier_pattern] = ACTIONS(266), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_SEMI] = ACTIONS(218), - [sym_integer] = ACTIONS(220), - [sym_float] = ACTIONS(218), - [sym_string] = ACTIONS(218), - [anon_sym_true] = ACTIONS(220), - [anon_sym_false] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_none] = ACTIONS(220), - [anon_sym_some] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(224), - [anon_sym_COLON] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(218), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_STAR] = ACTIONS(218), - [anon_sym_SLASH] = ACTIONS(218), - [anon_sym_PERCENT] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(218), - [anon_sym_DASH_EQ] = ACTIONS(218), - [anon_sym_if] = ACTIONS(220), - [anon_sym_match] = ACTIONS(220), - [anon_sym_while] = ACTIONS(220), - [anon_sym_for] = ACTIONS(220), - [anon_sym_asyncfor] = ACTIONS(218), - [anon_sym_return] = ACTIONS(220), - [anon_sym_DASH_GT] = ACTIONS(218), - [anon_sym_assert] = ACTIONS(220), - [anon_sym_assert_equal] = ACTIONS(220), - [anon_sym_bash] = ACTIONS(220), - [anon_sym_download] = ACTIONS(220), - [anon_sym_either_or] = ACTIONS(220), - [anon_sym_fish] = ACTIONS(220), - [anon_sym_from_json] = ACTIONS(220), - [anon_sym_is_none] = ACTIONS(220), - [anon_sym_is_some] = ACTIONS(220), - [anon_sym_length] = ACTIONS(220), - [anon_sym_metadata] = ACTIONS(220), - [anon_sym_output] = ACTIONS(220), - [anon_sym_output_error] = ACTIONS(220), - [anon_sym_random] = ACTIONS(220), - [anon_sym_random_boolean] = ACTIONS(220), - [anon_sym_random_float] = ACTIONS(220), - [anon_sym_random_integer] = ACTIONS(220), - [anon_sym_read] = ACTIONS(220), - [anon_sym_to_json] = ACTIONS(220), - [anon_sym_write] = ACTIONS(220), + [anon_sym_async] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_LPAREN] = 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_async] = ACTIONS(270), + [anon_sym_LBRACE] = ACTIONS(268), + [anon_sym_RBRACE] = ACTIONS(268), + [anon_sym_SEMI] = ACTIONS(268), + [anon_sym_LPAREN] = 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] = { - [sym_assignment_operator] = STATE(40), - [sym_type_definition] = STATE(321), + [sym_assignment_operator] = STATE(27), + [sym_type_definition] = STATE(337), [sym__identifier_pattern] = ACTIONS(220), [sym__comment] = ACTIONS(3), [anon_sym_async] = ACTIONS(220), [anon_sym_LBRACE] = ACTIONS(218), [anon_sym_RBRACE] = ACTIONS(218), [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(222), [sym_integer] = ACTIONS(220), [sym_float] = ACTIONS(218), [sym_string] = ACTIONS(218), [anon_sym_true] = ACTIONS(220), [anon_sym_false] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(264), + [anon_sym_EQ] = ACTIONS(272), [anon_sym_none] = ACTIONS(220), [anon_sym_some] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(224), [anon_sym_COLON] = ACTIONS(218), [anon_sym_PLUS] = ACTIONS(220), [anon_sym_DASH] = ACTIONS(220), @@ -7047,132 +7130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_write] = ACTIONS(220), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(266), - [sym__identifier_pattern] = ACTIONS(268), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(266), - [anon_sym_RBRACE] = ACTIONS(266), - [anon_sym_SEMI] = 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_LPAREN] = ACTIONS(266), - [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), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(270), - [sym__identifier_pattern] = ACTIONS(272), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(272), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(270), - [anon_sym_SEMI] = 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_LPAREN] = ACTIONS(270), - [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), - }, - [68] = { [ts_builtin_sym_end] = ACTIONS(274), [sym__identifier_pattern] = ACTIONS(276), [sym__comment] = ACTIONS(3), @@ -7180,6 +7137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(274), [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_SEMI] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(274), [sym_integer] = ACTIONS(276), [sym_float] = ACTIONS(274), [sym_string] = ACTIONS(274), @@ -7189,7 +7147,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(276), [anon_sym_none] = ACTIONS(276), [anon_sym_some] = ACTIONS(276), - [anon_sym_LPAREN] = ACTIONS(274), [anon_sym_COLON] = ACTIONS(274), [anon_sym_DOT_DOT] = ACTIONS(274), [anon_sym_PLUS] = ACTIONS(276), @@ -7235,7 +7192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(276), [anon_sym_write] = ACTIONS(276), }, - [69] = { + [67] = { [ts_builtin_sym_end] = ACTIONS(278), [sym__identifier_pattern] = ACTIONS(280), [sym__comment] = ACTIONS(3), @@ -7243,6 +7200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_RBRACE] = ACTIONS(278), [anon_sym_SEMI] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(278), [sym_integer] = ACTIONS(280), [sym_float] = ACTIONS(278), [sym_string] = ACTIONS(278), @@ -7252,7 +7210,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(280), [anon_sym_none] = ACTIONS(280), [anon_sym_some] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(278), [anon_sym_COLON] = ACTIONS(278), [anon_sym_DOT_DOT] = ACTIONS(278), [anon_sym_PLUS] = ACTIONS(280), @@ -7298,7 +7255,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(280), [anon_sym_write] = ACTIONS(280), }, - [70] = { + [68] = { + [sym_assignment_operator] = STATE(32), + [ts_builtin_sym_end] = ACTIONS(218), + [sym__identifier_pattern] = ACTIONS(220), + [sym__comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(220), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(222), + [sym_integer] = ACTIONS(220), + [sym_float] = ACTIONS(218), + [sym_string] = ACTIONS(218), + [anon_sym_true] = ACTIONS(220), + [anon_sym_false] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(224), + [anon_sym_none] = ACTIONS(220), + [anon_sym_some] = ACTIONS(220), + [anon_sym_COLON] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(218), + [anon_sym_SLASH] = ACTIONS(218), + [anon_sym_PERCENT] = ACTIONS(218), + [anon_sym_EQ_EQ] = ACTIONS(218), + [anon_sym_BANG_EQ] = ACTIONS(218), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT_EQ] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_if] = ACTIONS(220), + [anon_sym_match] = ACTIONS(220), + [anon_sym_while] = ACTIONS(220), + [anon_sym_for] = ACTIONS(220), + [anon_sym_asyncfor] = ACTIONS(218), + [anon_sym_return] = ACTIONS(220), + [anon_sym_DASH_GT] = ACTIONS(218), + [anon_sym_assert] = ACTIONS(220), + [anon_sym_assert_equal] = ACTIONS(220), + [anon_sym_bash] = ACTIONS(220), + [anon_sym_download] = ACTIONS(220), + [anon_sym_either_or] = ACTIONS(220), + [anon_sym_fish] = ACTIONS(220), + [anon_sym_from_json] = ACTIONS(220), + [anon_sym_is_none] = ACTIONS(220), + [anon_sym_is_some] = ACTIONS(220), + [anon_sym_length] = ACTIONS(220), + [anon_sym_metadata] = ACTIONS(220), + [anon_sym_output] = ACTIONS(220), + [anon_sym_output_error] = ACTIONS(220), + [anon_sym_random] = ACTIONS(220), + [anon_sym_random_boolean] = ACTIONS(220), + [anon_sym_random_float] = ACTIONS(220), + [anon_sym_random_integer] = ACTIONS(220), + [anon_sym_read] = ACTIONS(220), + [anon_sym_to_json] = ACTIONS(220), + [anon_sym_write] = ACTIONS(220), + }, + [69] = { [ts_builtin_sym_end] = ACTIONS(282), [sym__identifier_pattern] = ACTIONS(284), [sym__comment] = ACTIONS(3), @@ -7306,6 +7326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(282), [anon_sym_RBRACE] = ACTIONS(282), [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_LPAREN] = ACTIONS(282), [sym_integer] = ACTIONS(284), [sym_float] = ACTIONS(282), [sym_string] = ACTIONS(282), @@ -7315,7 +7336,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(284), [anon_sym_none] = ACTIONS(284), [anon_sym_some] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_COLON] = ACTIONS(282), [anon_sym_DOT_DOT] = ACTIONS(282), [anon_sym_PLUS] = ACTIONS(284), @@ -7361,7 +7381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(284), [anon_sym_write] = ACTIONS(284), }, - [71] = { + [70] = { [ts_builtin_sym_end] = ACTIONS(286), [sym__identifier_pattern] = ACTIONS(288), [sym__comment] = ACTIONS(3), @@ -7369,6 +7389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(286), [anon_sym_RBRACE] = ACTIONS(286), [anon_sym_SEMI] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(286), [sym_integer] = ACTIONS(288), [sym_float] = ACTIONS(286), [sym_string] = ACTIONS(286), @@ -7378,7 +7399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(288), [anon_sym_none] = ACTIONS(288), [anon_sym_some] = ACTIONS(288), - [anon_sym_LPAREN] = ACTIONS(286), [anon_sym_COLON] = ACTIONS(286), [anon_sym_DOT_DOT] = ACTIONS(286), [anon_sym_PLUS] = ACTIONS(288), @@ -7424,7 +7444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(288), [anon_sym_write] = ACTIONS(288), }, - [72] = { + [71] = { [ts_builtin_sym_end] = ACTIONS(290), [sym__identifier_pattern] = ACTIONS(292), [sym__comment] = ACTIONS(3), @@ -7432,6 +7452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(290), [anon_sym_RBRACE] = ACTIONS(290), [anon_sym_SEMI] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(290), [sym_integer] = ACTIONS(292), [sym_float] = ACTIONS(290), [sym_string] = ACTIONS(290), @@ -7441,7 +7462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(292), [anon_sym_none] = ACTIONS(292), [anon_sym_some] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(290), [anon_sym_COLON] = ACTIONS(290), [anon_sym_DOT_DOT] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -7487,7 +7507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(292), [anon_sym_write] = ACTIONS(292), }, - [73] = { + [72] = { [ts_builtin_sym_end] = ACTIONS(294), [sym__identifier_pattern] = ACTIONS(296), [sym__comment] = ACTIONS(3), @@ -7495,6 +7515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(294), [anon_sym_RBRACE] = ACTIONS(294), [anon_sym_SEMI] = ACTIONS(294), + [anon_sym_LPAREN] = ACTIONS(294), [sym_integer] = ACTIONS(296), [sym_float] = ACTIONS(294), [sym_string] = ACTIONS(294), @@ -7504,7 +7525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(296), [anon_sym_none] = ACTIONS(296), [anon_sym_some] = ACTIONS(296), - [anon_sym_LPAREN] = ACTIONS(294), [anon_sym_COLON] = ACTIONS(294), [anon_sym_DOT_DOT] = ACTIONS(294), [anon_sym_PLUS] = ACTIONS(296), @@ -7550,72 +7570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(296), [anon_sym_write] = ACTIONS(296), }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(260), - [sym__identifier_pattern] = ACTIONS(262), - [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_SEMI] = 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_LPAREN] = ACTIONS(260), - [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), - }, - [75] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), + [73] = { [ts_builtin_sym_end] = ACTIONS(298), [sym__identifier_pattern] = ACTIONS(300), [sym__comment] = ACTIONS(3), @@ -7623,36 +7578,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(298), [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_SEMI] = ACTIONS(298), + [anon_sym_LPAREN] = 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_LPAREN] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_PERCENT] = ACTIONS(190), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), + [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(208), + [anon_sym_DASH_GT] = ACTIONS(298), [anon_sym_assert] = ACTIONS(300), [anon_sym_assert_equal] = ACTIONS(300), [anon_sym_bash] = ACTIONS(300), @@ -7674,127 +7633,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_to_json] = ACTIONS(300), [anon_sym_write] = ACTIONS(300), }, - [76] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(298), - [sym__identifier_pattern] = ACTIONS(300), + [74] = { + [ts_builtin_sym_end] = ACTIONS(302), + [sym__identifier_pattern] = ACTIONS(304), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_async] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_SEMI] = ACTIONS(302), - [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_none] = ACTIONS(300), - [anon_sym_some] = ACTIONS(300), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_PERCENT] = ACTIONS(190), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [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(208), - [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), + [anon_sym_LPAREN] = 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] = { - [sym_math_operator] = STATE(170), - [sym_logic_operator] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(304), - [sym__identifier_pattern] = ACTIONS(306), + [75] = { + [ts_builtin_sym_end] = ACTIONS(234), + [sym__identifier_pattern] = ACTIONS(236), [sym__comment] = ACTIONS(3), - [anon_sym_async] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_SEMI] = 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_none] = ACTIONS(306), - [anon_sym_some] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_COLON] = ACTIONS(206), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_PERCENT] = ACTIONS(190), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [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(208), - [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), + [anon_sym_async] = ACTIONS(236), + [anon_sym_LBRACE] = ACTIONS(234), + [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_LPAREN] = 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), }, }; @@ -7802,53 +7765,54 @@ static const uint16_t ts_small_parse_table[] = { [0] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(308), 1, + ACTIONS(210), 1, anon_sym_COLON, - ACTIONS(310), 1, + ACTIONS(212), 1, anon_sym_DASH_GT, - STATE(187), 1, - sym_logic_operator, - STATE(211), 1, - sym_math_operator, - ACTIONS(188), 2, - anon_sym_PLUS, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(194), 2, + STATE(197), 1, + sym_logic_operator, + STATE(201), 1, + sym_math_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(190), 3, + ACTIONS(310), 4, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(182), 13, + ACTIONS(306), 9, + ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(184), 27, + anon_sym_asyncfor, + ACTIONS(308), 32, + anon_sym_async, sym__identifier_pattern, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_EQ, 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, @@ -7869,28 +7833,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [81] = 7, + [82] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(308), 1, + ACTIONS(210), 1, anon_sym_COLON, - ACTIONS(310), 1, + ACTIONS(212), 1, anon_sym_DASH_GT, - STATE(187), 1, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(322), 1, + anon_sym_SEMI, + STATE(197), 1, sym_logic_operator, - STATE(211), 1, + STATE(201), 1, + sym_math_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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), 8, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(320), 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, + [166] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(210), 1, + anon_sym_COLON, + ACTIONS(212), 1, + anon_sym_DASH_GT, + ACTIONS(312), 1, + anon_sym_DASH, + STATE(197), 1, + sym_logic_operator, + STATE(201), 1, + sym_math_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(320), 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, + [248] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(212), 1, + sym_logic_operator, + STATE(213), 1, + sym_math_operator, + ACTIONS(184), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(186), 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, + [317] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(212), 1, + sym_logic_operator, + STATE(213), 1, + sym_math_operator, + ACTIONS(188), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(190), 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, + [386] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(324), 1, + anon_sym_DOT_DOT, + STATE(212), 1, + sym_logic_operator, + STATE(213), 1, + sym_math_operator, + ACTIONS(184), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + ACTIONS(186), 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, + [457] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + anon_sym_DASH_GT, + STATE(212), 1, + sym_logic_operator, + STATE(213), 1, sym_math_operator, ACTIONS(202), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -7935,25 +8235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [154] = 5, + [530] = 7, ACTIONS(3), 1, sym__comment, - STATE(187), 1, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + anon_sym_DASH_GT, + STATE(212), 1, sym_logic_operator, - STATE(211), 1, + STATE(213), 1, sym_math_operator, - ACTIONS(198), 24, + ACTIONS(194), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -7966,8 +8269,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(200), 31, + ACTIONS(196), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -7999,26 +8301,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [223] = 6, + [603] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(312), 1, - anon_sym_DOT_DOT, - STATE(187), 1, + STATE(181), 1, sym_logic_operator, - STATE(211), 1, + STATE(190), 1, sym_math_operator, - ACTIONS(176), 23, + ACTIONS(188), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, @@ -8032,7 +8332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(178), 31, + ACTIONS(190), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8064,26 +8364,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [294] = 5, + [671] = 7, ACTIONS(3), 1, sym__comment, - STATE(187), 1, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(332), 1, + anon_sym_DASH_GT, + STATE(181), 1, sym_logic_operator, - STATE(211), 1, + STATE(190), 1, sym_math_operator, - ACTIONS(176), 24, + ACTIONS(194), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8095,8 +8397,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(178), 31, + ACTIONS(196), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -8128,97 +8429,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [363] = 11, + [743] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(314), 1, + ACTIONS(330), 1, anon_sym_COLON, - ACTIONS(316), 1, + ACTIONS(332), 1, anon_sym_DASH_GT, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, + STATE(181), 1, sym_logic_operator, - ACTIONS(188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(182), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(184), 27, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_EQ, - 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, - [443] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(314), 1, - anon_sym_COLON, - ACTIONS(316), 1, - anon_sym_DASH_GT, - STATE(173), 1, + STATE(190), 1, sym_math_operator, - STATE(174), 1, - sym_logic_operator, ACTIONS(202), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -8262,143 +8494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [515] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, - sym_logic_operator, - ACTIONS(198), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - ACTIONS(200), 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, - [583] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(252), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [646] = 3, + [815] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(290), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -8445,862 +8554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [709] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(286), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(288), 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, - [772] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(274), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(276), 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, - [835] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_LPAREN, - ACTIONS(260), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - 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(262), 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, - [900] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(234), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(236), 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, - [963] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(218), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(220), 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, - [1026] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(214), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [1089] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(210), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - 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, - [1152] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(278), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [1215] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(260), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(262), 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, - [1278] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(266), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(268), 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, - [1341] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(272), 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, - [1404] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_LPAREN, - ACTIONS(218), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - 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(220), 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, - [1469] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(294), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(296), 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, - [1532] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(232), 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, - [1595] = 3, + [878] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(282), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9347,20 +8614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1658] = 3, + [941] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(238), 24, + ACTIONS(302), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9375,7 +8642,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(304), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9407,20 +8674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1721] = 3, + [1004] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(224), 24, + ACTIONS(222), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9435,7 +8702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(250), 31, + ACTIONS(254), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9467,20 +8734,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1784] = 3, + [1067] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(224), 24, + ACTIONS(222), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9495,7 +8762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(250), 31, + ACTIONS(254), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9527,20 +8794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1847] = 3, + [1130] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(256), 24, + ACTIONS(274), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9555,7 +8822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, - ACTIONS(258), 31, + ACTIONS(276), 31, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9587,20 +8854,680 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1910] = 3, + [1193] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(298), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(300), 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, + [1256] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(234), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(236), 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, + [1319] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(206), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(208), 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, + [1382] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(270), 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, + [1445] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(230), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(232), 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, + [1508] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(266), 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, + [1571] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(286), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(288), 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, + [1634] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [1697] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(262), 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, + [1760] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(296), 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, + [1823] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(278), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [1886] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(246), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9647,20 +9574,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [1973] = 3, + [1949] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_LPAREN, + ACTIONS(234), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(236), 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, + [2014] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_LPAREN, + ACTIONS(218), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(220), 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, + [2079] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(240), 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, + [2142] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(258), 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, + [2205] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(242), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -9707,18 +9876,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2036] = 9, + [2268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(250), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(252), 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, + [2331] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(222), 1, - anon_sym_EQ, - ACTIONS(224), 1, anon_sym_LPAREN, + ACTIONS(224), 1, + anon_sym_EQ, ACTIONS(226), 1, anon_sym_LT, STATE(39), 1, sym_assignment_operator, - STATE(324), 1, + STATE(340), 1, sym_type_definition, ACTIONS(228), 2, anon_sym_PLUS_EQ, @@ -9772,14 +10001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2110] = 7, + [2405] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(222), 1, - anon_sym_EQ, - ACTIONS(224), 1, anon_sym_LPAREN, - STATE(38), 1, + ACTIONS(224), 1, + anon_sym_EQ, + STATE(28), 1, sym_assignment_operator, ACTIONS(228), 2, anon_sym_PLUS_EQ, @@ -9834,45 +10063,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2179] = 12, + [2474] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(314), 1, + ACTIONS(330), 1, anon_sym_COLON, - ACTIONS(316), 1, + ACTIONS(332), 1, anon_sym_DASH_GT, - ACTIONS(318), 1, - anon_sym_SEMI, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, + STATE(181), 1, sym_logic_operator, - ACTIONS(194), 2, + STATE(190), 1, + sym_math_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(190), 3, + ACTIONS(310), 4, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(298), 8, + ACTIONS(306), 8, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(300), 26, + ACTIONS(308), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -9899,171 +10127,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2256] = 11, + [2549] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(314), 1, + ACTIONS(330), 1, anon_sym_COLON, - ACTIONS(316), 1, + ACTIONS(332), 1, anon_sym_DASH_GT, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, + ACTIONS(334), 1, + anon_sym_SEMI, + STATE(181), 1, sym_logic_operator, - ACTIONS(194), 2, + STATE(190), 1, + sym_math_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(190), 3, + ACTIONS(310), 3, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(298), 9, + ACTIONS(318), 8, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(300), 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, - [2331] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(314), 1, - anon_sym_COLON, - ACTIONS(316), 1, - anon_sym_DASH_GT, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, - sym_logic_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(304), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(306), 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, - [2406] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(314), 1, - anon_sym_COLON, - ACTIONS(316), 1, - anon_sym_DASH_GT, - ACTIONS(324), 1, - anon_sym_COMMA, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, - sym_logic_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(322), 6, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, ACTIONS(320), 26, sym__identifier_pattern, sym_integer, @@ -10091,101 +10192,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2482] = 5, + [2626] = 11, ACTIONS(3), 1, sym__comment, - STATE(183), 1, - sym_math_operator, - STATE(205), 1, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(332), 1, + anon_sym_DASH_GT, + STATE(181), 1, sym_logic_operator, - ACTIONS(198), 21, + STATE(190), 1, + sym_math_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - 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(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, - [2544] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(314), 1, - anon_sym_COLON, - ACTIONS(316), 1, - anon_sym_DASH_GT, - ACTIONS(330), 1, anon_sym_COMMA, - STATE(173), 1, - sym_math_operator, - STATE(174), 1, - sym_logic_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(328), 6, - anon_sym_LBRACE, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(326), 26, + anon_sym_STAR, + ACTIONS(320), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -10212,22 +10256,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2620] = 6, + [2701] = 12, ACTIONS(3), 1, sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(330), 1, + anon_sym_COLON, ACTIONS(332), 1, - anon_sym_DOT_DOT, - STATE(183), 1, - sym_math_operator, - STATE(205), 1, + anon_sym_DASH_GT, + ACTIONS(340), 1, + anon_sym_COMMA, + STATE(181), 1, sym_logic_operator, - ACTIONS(176), 20, + STATE(190), 1, + sym_math_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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(338), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(336), 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, + [2777] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(344), 1, + anon_sym_RBRACE, + ACTIONS(346), 1, + anon_sym_STAR, + STATE(121), 1, + aux_sym_match_repeat1, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(307), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [2871] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(348), 1, + anon_sym_DOT_DOT, + STATE(216), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(184), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR, anon_sym_SLASH, @@ -10242,7 +10423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(178), 27, + ACTIONS(186), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -10270,83 +10451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2684] = 11, + [2935] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(334), 1, - anon_sym_COLON, - ACTIONS(336), 1, - anon_sym_DASH_GT, - STATE(183), 1, - sym_math_operator, - STATE(205), 1, + STATE(216), 1, sym_logic_operator, - ACTIONS(188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(182), 10, + STATE(220), 1, + sym_math_operator, + ACTIONS(188), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(184), 23, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - 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, - [2758] = 5, - ACTIONS(3), 1, - sym__comment, - STATE(183), 1, - sym_math_operator, - STATE(205), 1, - sym_logic_operator, - ACTIONS(176), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -10362,7 +10480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(178), 27, + ACTIONS(190), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -10390,24 +10508,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2820] = 7, + [2997] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(334), 1, - anon_sym_COLON, - ACTIONS(336), 1, - anon_sym_DASH_GT, - STATE(183), 1, - sym_math_operator, - STATE(205), 1, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(346), 1, + anon_sym_STAR, + ACTIONS(350), 1, + anon_sym_RBRACE, + STATE(121), 1, + aux_sym_match_repeat1, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(307), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [3091] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(352), 1, + sym__identifier_pattern, + ACTIONS(355), 1, + anon_sym_LBRACE, + ACTIONS(358), 1, + anon_sym_RBRACE, + ACTIONS(360), 1, + anon_sym_LPAREN, + ACTIONS(363), 1, + sym_integer, + ACTIONS(372), 1, + anon_sym_LBRACK, + ACTIONS(375), 1, + anon_sym_none, + ACTIONS(378), 1, + anon_sym_some, + ACTIONS(381), 1, + anon_sym_STAR, + STATE(121), 1, + aux_sym_match_repeat1, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(307), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(366), 2, + sym_float, + sym_string, + ACTIONS(369), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(384), 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, + [3185] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(216), 1, sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(184), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(186), 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, + [3247] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(389), 1, + anon_sym_DASH_GT, + STATE(216), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, ACTIONS(202), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_STAR, anon_sym_SLASH, @@ -10449,130 +10770,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [2886] = 21, + [3313] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - anon_sym_RBRACE, - ACTIONS(342), 1, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(332), 1, + anon_sym_DASH_GT, + ACTIONS(395), 1, + anon_sym_COMMA, + STATE(181), 1, + sym_logic_operator, + STATE(190), 1, + sym_math_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, anon_sym_STAR, - STATE(122), 1, - aux_sym_match_repeat1, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(296), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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(393), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, sym_float, sym_string, - ACTIONS(130), 2, + anon_sym_LBRACK, + ACTIONS(391), 26, + sym__identifier_pattern, + sym_integer, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [2979] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(344), 1, - sym__identifier_pattern, - ACTIONS(347), 1, - anon_sym_LBRACE, - ACTIONS(350), 1, - anon_sym_RBRACE, - ACTIONS(352), 1, - sym_integer, - ACTIONS(361), 1, - anon_sym_LBRACK, - ACTIONS(364), 1, anon_sym_none, - ACTIONS(367), 1, anon_sym_some, - ACTIONS(370), 1, - anon_sym_LPAREN, - ACTIONS(373), 1, - anon_sym_STAR, - STATE(122), 1, - aux_sym_match_repeat1, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(296), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(355), 2, - sym_float, - sym_string, - ACTIONS(358), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(376), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -10593,427 +10834,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [3072] = 5, + [3389] = 7, ACTIONS(3), 1, sym__comment, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(198), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(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, - [3133] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(188), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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(182), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_EQ_GT, - ACTIONS(184), 23, - anon_sym_async, - sym__identifier_pattern, - anon_sym_EQ, - 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, - [3206] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(202), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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(204), 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, - [3271] = 21, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(342), 1, - anon_sym_STAR, - ACTIONS(383), 1, - anon_sym_RBRACE, - STATE(122), 1, - aux_sym_match_repeat1, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(296), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [3364] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(230), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(232), 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, - [3420] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, ACTIONS(387), 1, - anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(166), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [3510] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(389), 1, - anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(162), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 20, + anon_sym_DASH_GT, + STATE(216), 1, + sym_logic_operator, + STATE(220), 1, + sym_math_operator, + ACTIONS(194), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(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, @@ -11034,56 +10893,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [3600] = 20, + [3455] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(391), 1, + ACTIONS(120), 1, sym__identifier_pattern, - ACTIONS(394), 1, - anon_sym_LBRACE, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, ACTIONS(397), 1, - sym_integer, - ACTIONS(406), 1, - anon_sym_LBRACK, - ACTIONS(409), 1, - anon_sym_none, - ACTIONS(412), 1, - anon_sym_some, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(418), 1, + anon_sym_LBRACE, + ACTIONS(399), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(95), 1, sym_built_in_function, - STATE(114), 1, + STATE(105), 1, + sym_function, + STATE(124), 1, sym_expression, - STATE(130), 1, + STATE(131), 1, aux_sym__expression_list, - STATE(346), 1, + STATE(361), 1, sym_function_expression, - ACTIONS(400), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(403), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(420), 20, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11104,409 +10964,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [3690] = 20, + [3546] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, + ACTIONS(401), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(404), 1, anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(114), 1, - sym_expression, - STATE(130), 1, - aux_sym__expression_list, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [3780] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - ACTIONS(425), 1, + ACTIONS(410), 1, + sym_integer, + ACTIONS(419), 1, + anon_sym_LBRACK, + ACTIONS(422), 1, anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(137), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [3870] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(266), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(268), 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, - [3926] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(278), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(280), 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, - [3982] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(252), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(254), 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, - [4038] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_LPAREN, - ACTIONS(218), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - 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(220), 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, - [4096] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, + ACTIONS(424), 1, anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, ACTIONS(427), 1, - anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, + anon_sym_some, + STATE(95), 1, sym_built_in_function, + STATE(105), 1, + sym_function, STATE(116), 1, sym_expression, - STATE(166), 1, + STATE(127), 1, aux_sym_list_repeat1, - STATE(346), 1, + STATE(361), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(413), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(416), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(430), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11527,56 +11035,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4186] = 20, + [3637] = 21, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - ACTIONS(429), 1, + ACTIONS(433), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(155), 1, sym_built_in_function, - STATE(114), 1, + STATE(167), 1, + sym_function, + STATE(279), 1, + aux_sym_function_repeat1, + STATE(310), 1, + sym_identifier, + STATE(312), 1, sym_expression, - STATE(130), 1, - aux_sym__expression_list, - STATE(346), 1, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(168), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(321), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [3730] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(435), 1, + anon_sym_RPAREN, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(131), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(152), 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, + [3821] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(437), 1, + anon_sym_RPAREN, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(131), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [3912] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(439), 1, + sym__identifier_pattern, + ACTIONS(442), 1, + anon_sym_LBRACE, + ACTIONS(445), 1, + anon_sym_LPAREN, + ACTIONS(448), 1, + anon_sym_RPAREN, + ACTIONS(450), 1, + sym_integer, + ACTIONS(459), 1, + anon_sym_LBRACK, + ACTIONS(462), 1, + anon_sym_none, + ACTIONS(465), 1, + anon_sym_some, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(131), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(453), 2, + sym_float, + sym_string, + ACTIONS(456), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(468), 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, + [4003] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(471), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(127), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [4094] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(473), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(127), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [4185] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(475), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(133), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11600,53 +11536,54 @@ static const uint16_t ts_small_parse_table[] = { [4276] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, + ACTIONS(120), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - ACTIONS(431), 1, + ACTIONS(477), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(95), 1, sym_built_in_function, - STATE(114), 1, + STATE(105), 1, + sym_function, + STATE(124), 1, sym_expression, - STATE(130), 1, + STATE(131), 1, aux_sym__expression_list, - STATE(346), 1, + STATE(361), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11667,56 +11604,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4366] = 20, + [4367] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, + ACTIONS(120), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - ACTIONS(433), 1, + ACTIONS(479), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(95), 1, sym_built_in_function, - STATE(114), 1, + STATE(105), 1, + sym_function, + STATE(124), 1, sym_expression, - STATE(149), 1, + STATE(135), 1, aux_sym__expression_list, - STATE(346), 1, + STATE(361), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11737,56 +11675,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4456] = 20, + [4458] = 20, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, + ACTIONS(120), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(126), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - ACTIONS(435), 1, + ACTIONS(481), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(95), 1, sym_built_in_function, - STATE(114), 1, + STATE(105), 1, + sym_function, + STATE(124), 1, sym_expression, - STATE(130), 1, + STATE(131), 1, aux_sym__expression_list, - STATE(346), 1, + STATE(361), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11807,163 +11746,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4546] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_LPAREN, - ACTIONS(260), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [4604] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [4660] = 20, + [4549] = 20, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - ACTIONS(437), 1, - anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + ACTIONS(346), 1, + anon_sym_STAR, + STATE(117), 1, + aux_sym_match_repeat1, + STATE(155), 1, sym_built_in_function, - STATE(114), 1, + STATE(167), 1, + sym_function, + STATE(307), 1, sym_expression, - STATE(139), 1, - aux_sym__expression_list, - STATE(346), 1, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(182), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -11984,268 +11817,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [4750] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(218), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(220), 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, - [4806] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(210), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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(212), 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] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(238), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [4918] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(274), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [4974] = 20, + [4640] = 21, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - ACTIONS(439), 1, + ACTIONS(483), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(155), 1, sym_built_in_function, - STATE(114), 1, + STATE(167), 1, + sym_function, + STATE(280), 1, + aux_sym_function_repeat1, + STATE(310), 1, + sym_identifier, + STATE(312), 1, sym_expression, - STATE(130), 1, - aux_sym__expression_list, - STATE(346), 1, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(168), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(321), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [4733] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(485), 1, + anon_sym_RPAREN, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(131), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -12266,215 +11960,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5064] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(282), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [5120] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(260), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [5176] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(214), 21, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - [5232] = 20, + [4824] = 21, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - ACTIONS(441), 1, + ACTIONS(483), 1, anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(155), 1, sym_built_in_function, - STATE(114), 1, + STATE(167), 1, + sym_function, + STATE(280), 1, + aux_sym_function_repeat1, + STATE(310), 1, + sym_identifier, + STATE(312), 1, sym_expression, - STATE(130), 1, - aux_sym__expression_list, - STATE(346), 1, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(168), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 20, + STATE(318), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -12495,18 +12032,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5322] = 3, + [4917] = 21, ACTIONS(3), 1, sym__comment, - ACTIONS(294), 21, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(275), 1, + aux_sym_function_repeat1, + STATE(310), 1, + sym_identifier, + STATE(312), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(168), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(321), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [5010] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(489), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(152), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [5101] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(491), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(132), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [5192] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(194), 18, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -12519,8 +12276,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(296), 27, + ACTIONS(196), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -12548,16 +12304,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5378] = 3, + [5257] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(202), 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + 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(204), 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, + [5322] = 21, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(275), 1, + aux_sym_function_repeat1, + STATE(310), 1, + sym_identifier, + STATE(312), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(168), 3, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(319), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [5415] = 5, + ACTIONS(3), 1, + sym__comment, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(188), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [5476] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(497), 1, + anon_sym_RPAREN, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(126), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [5567] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(499), 1, + anon_sym_RPAREN, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(124), 1, + sym_expression, + STATE(140), 1, + aux_sym__expression_list, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [5658] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(346), 1, + anon_sym_STAR, + STATE(120), 1, + aux_sym_match_repeat1, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(307), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [5749] = 20, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + ACTIONS(501), 1, + anon_sym_RBRACK, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(116), 1, + sym_expression, + STATE(127), 1, + aux_sym_list_repeat1, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [5840] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(250), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [5896] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(290), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -12601,16 +12880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5434] = 3, + [5952] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(224), 21, + ACTIONS(206), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -12626,7 +12905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(250), 27, + ACTIONS(208), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -12654,86 +12933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5490] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(342), 1, - anon_sym_STAR, - STATE(121), 1, - aux_sym_match_repeat1, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(296), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [5580] = 3, + [6008] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(234), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -12777,156 +12986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5636] = 20, + [6064] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(342), 1, - anon_sym_STAR, - STATE(126), 1, - aux_sym_match_repeat1, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(296), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [5726] = 20, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - ACTIONS(443), 1, - anon_sym_RPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(114), 1, - sym_expression, - STATE(141), 1, - aux_sym__expression_list, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [5816] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 21, + ACTIONS(298), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -12942,7 +13011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(258), 27, + ACTIONS(300), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -12970,86 +13039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [5872] = 20, + [6120] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - ACTIONS(445), 1, - anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(166), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [5962] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 21, + ACTIONS(274), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -13065,7 +13064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(250), 27, + ACTIONS(276), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13093,16 +13092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6018] = 3, + [6176] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(246), 21, + ACTIONS(222), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -13118,7 +13117,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(254), 27, anon_sym_async, sym__identifier_pattern, anon_sym_EQ, @@ -13146,16 +13145,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6074] = 3, + [6232] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(214), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6288] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(254), 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, + [6344] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(242), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -13199,56 +13304,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6130] = 20, + [6400] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(447), 1, - sym__identifier_pattern, - ACTIONS(450), 1, + ACTIONS(230), 21, anon_sym_LBRACE, - ACTIONS(453), 1, - sym_integer, - ACTIONS(462), 1, - anon_sym_LBRACK, - ACTIONS(465), 1, - anon_sym_RBRACK, - ACTIONS(467), 1, - anon_sym_none, - ACTIONS(470), 1, - anon_sym_some, - ACTIONS(473), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LPAREN, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(166), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(456), 2, - sym_float, - sym_string, - ACTIONS(459), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(476), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(232), 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, @@ -13269,56 +13357,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6220] = 20, + [6456] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(268), 21, anon_sym_LBRACE, - ACTIONS(479), 1, - anon_sym_RBRACK, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(116), 1, - sym_expression, - STATE(128), 1, - aux_sym_list_repeat1, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 20, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, @@ -13339,16 +13410,548 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6310] = 3, + [6512] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(264), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6568] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(294), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6624] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_LPAREN, + ACTIONS(234), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6682] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_LPAREN, + ACTIONS(218), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(220), 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, + [6740] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(238), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6796] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(282), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [6852] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(256), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(258), 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, + [6908] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(246), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(248), 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, + [6964] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(260), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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, + [7020] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(278), 21, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(280), 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, + [7076] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(286), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_STAR, @@ -13392,52 +13995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6366] = 18, + [7132] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(302), 21, anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(295), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 20, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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(304), 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, @@ -13458,1884 +14048,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [6450] = 18, + [7188] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(305), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [7273] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, ACTIONS(19), 1, - anon_sym_none, + anon_sym_LBRACK, ACTIONS(21), 1, - anon_sym_some, + anon_sym_none, ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(46), 1, - sym_expression, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [6534] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [6618] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_built_in_function, - STATE(100), 1, - sym_function_expression, - STATE(104), 1, - sym_function, - STATE(299), 1, - sym_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(105), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(174), 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, - [6702] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(84), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [6786] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [6870] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [6954] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [7038] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(62), 1, - sym_function, - STATE(73), 1, - sym_function_expression, - STATE(300), 1, - sym_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(57), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 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, - [7122] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(294), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [7206] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_expression, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [7290] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, + ACTIONS(503), 1, anon_sym_LBRACE, STATE(43), 1, sym_expression, - STATE(50), 1, + STATE(46), 1, sym_built_in_function, - STATE(63), 1, + STATE(53), 1, sym_function, - STATE(343), 1, + STATE(366), 1, sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [7374] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(286), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [7458] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(291), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [7542] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(120), 1, - sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(152), 1, - sym_built_in_function, - STATE(154), 1, - sym_function_expression, - STATE(156), 1, - sym_function, - STATE(303), 1, - sym_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(163), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(152), 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, - [7710] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(487), 1, - anon_sym_elseif, - ACTIONS(489), 1, - anon_sym_else, - STATE(229), 1, - sym_else, - STATE(214), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(483), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(485), 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, - [7772] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(293), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [7856] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [7940] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(289), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8024] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(119), 1, - sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8108] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(287), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8192] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(223), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8276] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(290), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8360] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(124), 1, - sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8444] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_expression, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [8528] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(45), 1, - sym_expression, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [8612] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(154), 1, - sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_LBRACE, - STATE(85), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, - sym_built_in_function, - STATE(346), 1, - sym_function_expression, - ACTIONS(160), 2, - sym_float, - sym_string, - ACTIONS(162), 2, - anon_sym_true, - anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - STATE(99), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - ACTIONS(174), 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, - [8696] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(62), 1, - sym_function, - STATE(73), 1, - sym_function_expression, - STATE(302), 1, - sym_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, STATE(57), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - STATE(151), 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, - [8780] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(42), 1, - sym_expression, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 4, sym_boolean, sym_list, sym_map, @@ -15361,305 +14182,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [8864] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(292), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [8948] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(298), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [9032] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(487), 1, - anon_sym_elseif, - ACTIONS(489), 1, - anon_sym_else, - STATE(234), 1, - sym_else, - STATE(185), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(491), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(493), 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, - [9094] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_LBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(63), 1, - sym_function, - STATE(77), 1, - sym_expression, - STATE(343), 1, - sym_function_expression, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(74), 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, - [9178] = 18, + [7358] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(155), 1, sym_built_in_function, - STATE(113), 1, + STATE(167), 1, + sym_function, + STATE(309), 1, sym_expression, - STATE(346), 1, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(182), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -15680,51 +14249,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9262] = 18, + [7443] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(11), 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(503), 1, + anon_sym_LBRACE, + STATE(44), 1, + sym_expression, + STATE(46), 1, + sym_built_in_function, + STATE(53), 1, + sym_function, + STATE(366), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 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, + [7528] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(120), 1, sym__identifier_pattern, ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(288), 1, + STATE(86), 1, sym_expression, - STATE(342), 1, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(361), 1, sym_function_expression, - ACTIONS(128), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, @@ -15746,51 +14383,588 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9346] = 18, + [7613] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(120), 1, + ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, STATE(118), 1, sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, + STATE(155), 1, sym_built_in_function, - STATE(342), 1, + STATE(167), 1, + sym_function, + STATE(367), 1, sym_function_expression, - ACTIONS(128), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [7698] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_function_expression, + STATE(155), 1, + sym_built_in_function, + STATE(161), 1, + sym_function, + STATE(312), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(159), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [7783] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(145), 1, + sym_expression, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [7868] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(146), 1, + sym_expression, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [7953] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(298), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8038] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(296), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8123] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(302), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8208] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(295), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8293] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(85), 1, + sym_expression, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, @@ -15812,52 +14986,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9430] = 18, + [8378] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - STATE(93), 1, - sym_built_in_function, - STATE(100), 1, - sym_function_expression, - STATE(104), 1, - sym_function, - STATE(301), 1, + STATE(122), 1, sym_expression, - ACTIONS(128), 2, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(105), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - ACTIONS(174), 20, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -15878,47 +15053,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9514] = 18, + [8463] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(79), 1, + sym_expression, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [8548] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(300), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8633] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(306), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8718] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(301), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [8803] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(19), 1, - anon_sym_none, - ACTIONS(21), 1, - anon_sym_some, - ACTIONS(23), 1, anon_sym_LPAREN, - ACTIONS(481), 1, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(503), 1, anon_sym_LBRACE, - STATE(41), 1, - sym_expression, - STATE(50), 1, + STATE(46), 1, sym_built_in_function, - STATE(63), 1, + STATE(53), 1, sym_function, - STATE(343), 1, + STATE(76), 1, + sym_expression, + STATE(366), 1, sym_function_expression, - ACTIONS(13), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(15), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(60), 3, - sym_value, - sym_math, - sym_logic, - STATE(64), 4, + STATE(57), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - STATE(74), 4, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 4, sym_boolean, sym_list, sym_map, @@ -15944,52 +15388,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9598] = 18, + [8888] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(120), 1, + ACTIONS(5), 1, sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, + ACTIONS(11), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(13), 1, + sym_integer, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_none, + ACTIONS(23), 1, + anon_sym_some, + ACTIONS(503), 1, anon_sym_LBRACE, - STATE(125), 1, - sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, + STATE(46), 1, sym_built_in_function, - STATE(342), 1, + STATE(48), 1, + sym_expression, + STATE(53), 1, + sym_function, + STATE(366), 1, sym_function_expression, - ACTIONS(128), 2, + ACTIONS(15), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, + STATE(57), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - STATE(151), 4, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 4, sym_boolean, sym_list, sym_map, sym_option, - ACTIONS(152), 20, + ACTIONS(37), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16010,184 +15455,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9682] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(285), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [9766] = 18, - ACTIONS(3), 1, - sym__comment, - ACTIONS(120), 1, - sym__identifier_pattern, - ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, - anon_sym_LPAREN, - ACTIONS(338), 1, - anon_sym_LBRACE, - STATE(142), 1, - sym_function, - STATE(152), 1, - sym_built_in_function, - STATE(297), 1, - sym_expression, - STATE(342), 1, - sym_function_expression, - ACTIONS(128), 2, - sym_float, - sym_string, - ACTIONS(130), 2, - anon_sym_true, - anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, - sym_boolean, - sym_list, - sym_map, - sym_option, - ACTIONS(152), 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, - [9850] = 18, + [8973] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(154), 1, sym__identifier_pattern, - ACTIONS(158), 1, - sym_integer, - ACTIONS(164), 1, - anon_sym_LBRACK, - ACTIONS(166), 1, - anon_sym_none, - ACTIONS(168), 1, - anon_sym_some, - ACTIONS(170), 1, + ACTIONS(160), 1, anon_sym_LPAREN, - ACTIONS(385), 1, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, anon_sym_LBRACE, - STATE(79), 1, - sym_expression, - STATE(90), 1, - sym_function, - STATE(93), 1, + STATE(155), 1, sym_built_in_function, - STATE(346), 1, + STATE(167), 1, + sym_function, + STATE(311), 1, + sym_expression, + STATE(367), 1, sym_function_expression, - ACTIONS(160), 2, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(162), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(92), 3, - sym_value, - sym_math, - sym_logic, - STATE(96), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(99), 4, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, sym_identifier, sym_index, sym_function_call, sym_yield, - ACTIONS(174), 20, + ACTIONS(182), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -16208,51 +15522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [9934] = 18, + [9058] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(120), 1, sym__identifier_pattern, ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - STATE(117), 1, + STATE(84), 1, sym_expression, - STATE(142), 1, - sym_function, - STATE(152), 1, + STATE(95), 1, sym_built_in_function, - STATE(342), 1, + STATE(105), 1, + sym_function, + STATE(361), 1, sym_function_expression, - ACTIONS(128), 2, + ACTIONS(130), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(132), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(136), 4, - sym_identifier, - sym_index, - sym_function_call, - sym_yield, - STATE(151), 4, + STATE(94), 4, sym_boolean, sym_list, sym_map, sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, ACTIONS(152), 20, anon_sym_assert, anon_sym_assert_equal, @@ -16274,47 +15589,852 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10018] = 18, + [9143] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_function, + STATE(95), 1, + sym_built_in_function, + STATE(110), 1, + sym_function_expression, + STATE(317), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(90), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(152), 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, + [9228] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(11), 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(503), 1, + anon_sym_LBRACE, + STATE(46), 1, + sym_built_in_function, + STATE(47), 1, + sym_expression, + STATE(53), 1, + sym_function, + STATE(366), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 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, + [9313] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(507), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_built_in_function, + STATE(58), 1, + sym_function_expression, + STATE(59), 1, + sym_function, + STATE(313), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(60), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + 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, + [9398] = 18, ACTIONS(3), 1, sym__comment, ACTIONS(120), 1, sym__identifier_pattern, ACTIONS(126), 1, - sym_integer, - ACTIONS(132), 1, - anon_sym_LBRACK, - ACTIONS(134), 1, - anon_sym_none, - ACTIONS(136), 1, - anon_sym_some, - ACTIONS(138), 1, anon_sym_LPAREN, - ACTIONS(338), 1, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, anon_sym_LBRACE, - STATE(152), 1, + STATE(81), 1, + sym_expression, + STATE(95), 1, sym_built_in_function, - STATE(154), 1, + STATE(105), 1, + sym_function, + STATE(361), 1, sym_function_expression, - STATE(156), 1, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [9483] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(148), 1, + sym_expression, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [9568] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(507), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_built_in_function, + STATE(58), 1, + sym_function_expression, + STATE(59), 1, + sym_function, + STATE(314), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(60), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + 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, + [9653] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(11), 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(503), 1, + anon_sym_LBRACE, + STATE(41), 1, + sym_expression, + STATE(46), 1, + sym_built_in_function, + STATE(53), 1, + sym_function, + STATE(366), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 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, + [9738] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, sym_function, STATE(304), 1, sym_expression, - ACTIONS(128), 2, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, sym_float, sym_string, - ACTIONS(130), 2, + ACTIONS(166), 2, anon_sym_true, anon_sym_false, - STATE(145), 3, - sym_value, - sym_math, - sym_logic, - STATE(151), 4, + STATE(156), 4, sym_boolean, sym_list, sym_map, sym_option, - STATE(163), 4, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [9823] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(303), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [9908] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(11), 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(503), 1, + anon_sym_LBRACE, + STATE(46), 1, + sym_built_in_function, + STATE(49), 1, + sym_expression, + STATE(53), 1, + sym_function, + STATE(366), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 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, + [9993] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(233), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10078] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(11), 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(503), 1, + anon_sym_LBRACE, + STATE(45), 1, + sym_expression, + STATE(46), 1, + sym_built_in_function, + STATE(53), 1, + sym_function, + STATE(366), 1, + sym_function_expression, + ACTIONS(15), 2, + sym_float, + sym_string, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(57), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(64), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(75), 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, + [10163] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(82), 1, + sym_expression, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, sym_identifier, sym_index, sym_function_call, @@ -16340,25 +16460,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10102] = 5, + [10248] = 18, ACTIONS(3), 1, sym__comment, - ACTIONS(499), 1, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_expression, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [10333] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_function, + STATE(95), 1, + sym_built_in_function, + STATE(110), 1, + sym_function_expression, + STATE(315), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(90), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(152), 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, + [10418] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(120), 1, + sym__identifier_pattern, + ACTIONS(126), 1, + anon_sym_LPAREN, + ACTIONS(128), 1, + sym_integer, + ACTIONS(134), 1, + anon_sym_LBRACK, + ACTIONS(136), 1, + anon_sym_none, + ACTIONS(138), 1, + anon_sym_some, + ACTIONS(397), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_built_in_function, + STATE(105), 1, + sym_function, + STATE(113), 1, + sym_expression, + STATE(361), 1, + sym_function_expression, + ACTIONS(130), 2, + sym_float, + sym_string, + ACTIONS(132), 2, + anon_sym_true, + anon_sym_false, + STATE(94), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(96), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(106), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(152), 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, + [10503] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(123), 1, + sym_expression, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10588] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(308), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10673] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(297), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10758] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(299), 1, + sym_expression, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10843] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_expression, + STATE(155), 1, + sym_built_in_function, + STATE(167), 1, + sym_function, + STATE(367), 1, + sym_function_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + STATE(168), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + ACTIONS(182), 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, + [10928] = 18, + ACTIONS(3), 1, + sym__comment, + ACTIONS(154), 1, + sym__identifier_pattern, + ACTIONS(160), 1, + anon_sym_LPAREN, + ACTIONS(162), 1, + sym_integer, + ACTIONS(168), 1, + anon_sym_LBRACK, + ACTIONS(170), 1, + anon_sym_none, + ACTIONS(172), 1, + anon_sym_some, + ACTIONS(342), 1, + anon_sym_LBRACE, + STATE(153), 1, + sym_function_expression, + STATE(155), 1, + sym_built_in_function, + STATE(161), 1, + sym_function, + STATE(316), 1, + sym_expression, + ACTIONS(164), 2, + sym_float, + sym_string, + ACTIONS(166), 2, + anon_sym_true, + anon_sym_false, + STATE(156), 4, + sym_boolean, + sym_list, + sym_map, + sym_option, + STATE(159), 4, + sym_identifier, + sym_index, + sym_function_call, + sym_yield, + STATE(164), 4, + sym__expression_kind, + sym_value, + sym_math, + sym_logic, + ACTIONS(182), 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, + [11013] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(513), 1, anon_sym_elseif, - STATE(214), 2, + ACTIONS(515), 1, + anon_sym_else, + STATE(238), 1, + sym_else, + STATE(223), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(495), 9, + ACTIONS(509), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(497), 33, + ACTIONS(511), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16367,7 +17094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_none, anon_sym_some, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_while, anon_sym_for, @@ -16392,18 +17118,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10159] = 9, + [11075] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(513), 1, + anon_sym_elseif, + ACTIONS(515), 1, + anon_sym_else, + STATE(231), 1, + sym_else, + STATE(225), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(517), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, + [11137] = 9, ACTIONS(3), 1, sym__comment, ACTIONS(222), 1, - anon_sym_EQ, - ACTIONS(224), 1, anon_sym_LPAREN, + ACTIONS(224), 1, + anon_sym_EQ, ACTIONS(226), 1, anon_sym_LT, - STATE(28), 1, + STATE(31), 1, sym_assignment_operator, - STATE(323), 1, + STATE(339), 1, sym_type_definition, ACTIONS(228), 2, anon_sym_PLUS_EQ, @@ -16448,14 +17229,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10224] = 7, + [11202] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(525), 1, + anon_sym_elseif, + STATE(225), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(521), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, + [11259] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(222), 1, - anon_sym_EQ, - ACTIONS(224), 1, anon_sym_LPAREN, - STATE(35), 1, + ACTIONS(224), 1, + anon_sym_EQ, + STATE(29), 1, sym_assignment_operator, ACTIONS(228), 2, anon_sym_PLUS_EQ, @@ -16501,21 +17334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10284] = 3, + [11319] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(252), 10, + ACTIONS(528), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(254), 33, + ACTIONS(530), 33, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16549,21 +17382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10335] = 3, + [11370] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(502), 10, + ACTIONS(242), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(504), 33, + ACTIONS(244), 33, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16597,21 +17430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10386] = 3, + [11421] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(270), 10, + ACTIONS(230), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(272), 33, + ACTIONS(232), 33, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16645,21 +17478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10437] = 3, + [11472] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(506), 10, + ACTIONS(532), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_elseif, anon_sym_asyncfor, - ACTIONS(508), 33, + ACTIONS(534), 33, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16693,20 +17526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10488] = 3, + [11523] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(510), 9, + ACTIONS(536), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(512), 32, + ACTIONS(538), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16739,20 +17572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10537] = 3, + [11572] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(514), 9, + ACTIONS(540), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(516), 32, + ACTIONS(542), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -16785,39 +17618,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10586] = 11, + [11621] = 11, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(379), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(381), 1, + ACTIONS(495), 1, anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, + STATE(184), 1, sym_math_operator, - ACTIONS(194), 2, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(304), 3, + ACTIONS(306), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(190), 4, + ACTIONS(310), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(306), 21, + ACTIONS(308), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -16839,178 +17672,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10651] = 3, + [11686] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(518), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(520), 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, - [10700] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(522), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(524), 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, - [10749] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(526), 9, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(528), 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, - [10798] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(318), 1, + ACTIONS(334), 1, anon_sym_SEMI, - ACTIONS(379), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(381), 1, + ACTIONS(495), 1, anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, + STATE(184), 1, sym_math_operator, - ACTIONS(194), 2, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(298), 2, + ACTIONS(318), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(190), 4, + ACTIONS(310), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(300), 21, + ACTIONS(320), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -17032,20 +17727,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10865] = 3, + [11753] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(530), 9, + ACTIONS(544), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(532), 32, + ACTIONS(546), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17078,20 +17773,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10914] = 3, + [11802] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(534), 9, + ACTIONS(322), 1, + anon_sym_SEMI, + ACTIONS(318), 8, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(536), 32, + ACTIONS(320), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17124,20 +17820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [10963] = 3, + [11853] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(538), 9, + ACTIONS(548), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(540), 32, + ACTIONS(550), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17170,39 +17866,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11012] = 11, + [11902] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(517), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + 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, + [11951] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(552), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(554), 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, + [12000] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(379), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(381), 1, + ACTIONS(495), 1, anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, + STATE(184), 1, sym_math_operator, - ACTIONS(194), 2, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(298), 3, + ACTIONS(318), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(190), 4, + ACTIONS(310), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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(300), 21, + ACTIONS(320), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -17224,20 +18012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11077] = 3, + [12065] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(298), 9, + ACTIONS(318), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(300), 32, + ACTIONS(320), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17270,20 +18058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11126] = 3, + [12114] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(542), 9, + ACTIONS(556), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(544), 32, + ACTIONS(558), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17316,20 +18104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11175] = 3, + [12163] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(483), 9, + ACTIONS(560), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(485), 32, + ACTIONS(562), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17362,21 +18150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11224] = 4, + [12212] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(302), 1, - anon_sym_SEMI, - ACTIONS(298), 8, + ACTIONS(564), 9, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_asyncfor, - ACTIONS(300), 32, + ACTIONS(566), 32, anon_sym_async, sym__identifier_pattern, sym_integer, @@ -17409,29 +18196,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11275] = 7, + [12261] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(546), 1, + ACTIONS(568), 9, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(570), 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, + [12310] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, anon_sym_elseif, - ACTIONS(548), 1, + ACTIONS(574), 1, anon_sym_else, - STATE(247), 1, + STATE(262), 1, sym_else, - STATE(237), 2, + STATE(247), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(491), 9, + ACTIONS(509), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(493), 26, + ACTIONS(511), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -17458,29 +18291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11331] = 7, + [12366] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(546), 1, + ACTIONS(572), 1, anon_sym_elseif, - ACTIONS(548), 1, + ACTIONS(574), 1, anon_sym_else, - STATE(244), 1, + STATE(260), 1, sym_else, - STATE(238), 2, + STATE(248), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(483), 9, + ACTIONS(517), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(485), 26, + ACTIONS(519), 26, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -17507,25 +18340,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11387] = 5, + [12422] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(550), 1, + ACTIONS(576), 1, anon_sym_elseif, - STATE(238), 2, + STATE(248), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(495), 9, + ACTIONS(521), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, sym_float, sym_string, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(497), 27, + ACTIONS(523), 27, sym__identifier_pattern, sym_integer, anon_sym_true, @@ -17553,933 +18386,1009 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [11438] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(555), 6, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_asyncfor, - ACTIONS(553), 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, - [11484] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(272), 27, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - 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, - [11529] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(252), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(254), 27, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - 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, - [11574] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(506), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(508), 27, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - 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, - [11619] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(502), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_elseif, - ACTIONS(504), 27, - sym__identifier_pattern, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_none, - anon_sym_some, - anon_sym_else, - 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, - [11664] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(534), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(536), 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, - [11707] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(530), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(532), 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, - [11750] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(298), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(300), 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, - [11793] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(483), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(485), 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, - [11836] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(510), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(512), 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, - [11879] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(514), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(516), 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, - [11922] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(542), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(544), 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, - [11965] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(538), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(540), 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, - [12008] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(518), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(520), 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, - [12051] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(526), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(528), 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, - [12094] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(318), 1, - anon_sym_SEMI, - ACTIONS(298), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(300), 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, - [12139] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(522), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(524), 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, - [12182] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(561), 1, - anon_sym_COMMA, - ACTIONS(559), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(557), 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, - [12226] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(565), 7, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_STAR, - ACTIONS(563), 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, - [12267] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(465), 6, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - ACTIONS(567), 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, - [12307] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(418), 6, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(569), 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, - [12347] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(573), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(571), 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, - [12386] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(577), 5, - anon_sym_LBRACE, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_LPAREN, - ACTIONS(575), 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, - [12425] = 3, + [12473] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(581), 6, anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_asyncfor, + ACTIONS(579), 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, + [12519] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(532), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(534), 27, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + 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, + [12564] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(242), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(244), 27, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + 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, + [12609] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(528), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(530), 27, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + 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, + [12654] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(230), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_elseif, + ACTIONS(232), 27, + sym__identifier_pattern, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_none, + anon_sym_some, + anon_sym_else, + 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, + [12699] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(560), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [12742] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(556), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(558), 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, + [12785] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(548), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [12828] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(318), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(320), 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, + [12871] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(334), 1, + anon_sym_SEMI, + ACTIONS(318), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(320), 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, + [12916] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(540), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [12959] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(536), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [13002] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(568), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [13045] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(517), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(519), 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, + [13088] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(544), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(546), 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, + [13131] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(564), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [13174] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(552), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + [13217] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(587), 1, + anon_sym_COMMA, + ACTIONS(585), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(583), 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, + [13261] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(591), 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_STAR, + ACTIONS(589), 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, + [13302] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(422), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [13342] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(448), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(595), 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, + [13382] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(599), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + 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, + [13421] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(603), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + ACTIONS(601), 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, + [13460] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, + anon_sym_elseif, + ACTIONS(605), 1, + anon_sym_else, + STATE(262), 1, + sym_else, + STATE(273), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(509), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(511), 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, + [13505] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(572), 1, + anon_sym_elseif, + ACTIONS(605), 1, + anon_sym_else, + STATE(260), 1, + sym_else, + STATE(248), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(517), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(519), 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, + [13550] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(609), 6, + anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(579), 22, + ACTIONS(607), 22, anon_sym_async, sym__identifier_pattern, anon_sym_assert, @@ -18502,392 +19411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12461] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(271), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12502] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(583), 1, - sym__identifier_pattern, - ACTIONS(586), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(264), 1, - aux_sym_map_repeat1, - STATE(328), 1, - sym_identifier, - ACTIONS(588), 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, - [12543] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(591), 1, - sym__identifier_pattern, - ACTIONS(594), 1, - anon_sym_RPAREN, - STATE(50), 1, - sym_built_in_function, - STATE(265), 1, - aux_sym_function_repeat1, - STATE(334), 1, - sym_identifier, - ACTIONS(596), 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, - [12584] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(599), 1, - anon_sym_RPAREN, - STATE(50), 1, - sym_built_in_function, - STATE(265), 1, - aux_sym_function_repeat1, - STATE(334), 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, - [12625] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(270), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12666] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(601), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(264), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12707] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(96), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(268), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12748] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(603), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(264), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12789] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(605), 1, - anon_sym_RBRACE, - STATE(50), 1, - sym_built_in_function, - STATE(264), 1, - aux_sym_map_repeat1, - STATE(328), 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, - [12830] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(607), 1, - anon_sym_RPAREN, - STATE(50), 1, - sym_built_in_function, - STATE(274), 1, - aux_sym_function_repeat1, - STATE(334), 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, - [12871] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(5), 1, - sym__identifier_pattern, - ACTIONS(609), 1, - anon_sym_RPAREN, - STATE(50), 1, - sym_built_in_function, - STATE(265), 1, - aux_sym_function_repeat1, - STATE(334), 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, - [12912] = 7, + [13586] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, ACTIONS(611), 1, anon_sym_RPAREN, - STATE(50), 1, + STATE(46), 1, sym_built_in_function, - STATE(265), 1, + STATE(281), 1, aux_sym_function_repeat1, - STATE(334), 1, + STATE(355), 1, sym_identifier, ACTIONS(37), 20, anon_sym_assert, @@ -18910,18 +19445,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12953] = 7, + [13627] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(94), 1, + anon_sym_RBRACE, + STATE(46), 1, + sym_built_in_function, + STATE(285), 1, + aux_sym_map_repeat1, + STATE(344), 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, + [13668] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, ACTIONS(613), 1, - anon_sym_RPAREN, - STATE(50), 1, + anon_sym_RBRACE, + STATE(46), 1, sym_built_in_function, - STATE(266), 1, - aux_sym_function_repeat1, - STATE(334), 1, + STATE(282), 1, + aux_sym_map_repeat1, + STATE(344), 1, sym_identifier, ACTIONS(37), 20, anon_sym_assert, @@ -18944,18 +19513,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [12994] = 7, + [13709] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, ACTIONS(615), 1, - anon_sym_RPAREN, - STATE(50), 1, + anon_sym_RBRACE, + STATE(46), 1, sym_built_in_function, - STATE(273), 1, + STATE(282), 1, + aux_sym_map_repeat1, + STATE(344), 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, + [13750] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(617), 1, + anon_sym_RPAREN, + STATE(46), 1, + sym_built_in_function, + STATE(281), 1, aux_sym_function_repeat1, - STATE(334), 1, + STATE(355), 1, sym_identifier, ACTIONS(37), 20, anon_sym_assert, @@ -18978,15 +19581,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13035] = 4, + [13791] = 7, ACTIONS(3), 1, sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, ACTIONS(619), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, + STATE(46), 1, + sym_built_in_function, + STATE(281), 1, + aux_sym_function_repeat1, + STATE(355), 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, + [13832] = 7, + ACTIONS(3), 1, + sym__comment, ACTIONS(621), 1, - anon_sym_COMMA, - ACTIONS(617), 21, sym__identifier_pattern, + ACTIONS(624), 1, + anon_sym_RPAREN, + STATE(46), 1, + sym_built_in_function, + STATE(281), 1, + aux_sym_function_repeat1, + STATE(355), 1, + sym_identifier, + ACTIONS(626), 20, anon_sym_assert, anon_sym_assert_equal, anon_sym_bash, @@ -19007,14 +19649,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13068] = 5, + [13873] = 7, + ACTIONS(3), 1, + sym__comment, + ACTIONS(629), 1, + sym__identifier_pattern, + ACTIONS(632), 1, + anon_sym_RBRACE, + STATE(46), 1, + sym_built_in_function, + STATE(282), 1, + aux_sym_map_repeat1, + STATE(344), 1, + sym_identifier, + ACTIONS(634), 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, + [13914] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, - STATE(50), 1, + ACTIONS(92), 1, + anon_sym_RBRACE, + STATE(46), 1, sym_built_in_function, - STATE(352), 1, + STATE(277), 1, + aux_sym_map_repeat1, + STATE(344), 1, sym_identifier, ACTIONS(37), 20, anon_sym_assert, @@ -19037,72 +19717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13103] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(625), 1, - anon_sym_RBRACE, - ACTIONS(627), 1, - anon_sym_COMMA, - ACTIONS(623), 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, - [13136] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(594), 1, - anon_sym_RPAREN, - ACTIONS(631), 1, - anon_sym_COMMA, - ACTIONS(629), 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, - [13169] = 5, + [13955] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(5), 1, sym__identifier_pattern, - STATE(50), 1, + ACTIONS(96), 1, + anon_sym_RBRACE, + STATE(46), 1, sym_built_in_function, - STATE(347), 1, + STATE(278), 1, + aux_sym_map_repeat1, + STATE(344), 1, sym_identifier, ACTIONS(37), 20, anon_sym_assert, @@ -19125,12 +19751,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13204] = 3, + [13996] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(635), 1, + ACTIONS(5), 1, + sym__identifier_pattern, + ACTIONS(637), 1, anon_sym_RBRACE, - ACTIONS(633), 21, + STATE(46), 1, + sym_built_in_function, + STATE(282), 1, + aux_sym_map_repeat1, + STATE(344), 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, + [14037] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(46), 1, + sym_built_in_function, + STATE(371), 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, + [14072] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(641), 1, + anon_sym_RBRACE, + ACTIONS(643), 1, + anon_sym_COMMA, + ACTIONS(639), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -19152,12 +19844,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13234] = 3, + [14105] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(625), 1, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(46), 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, + [14140] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(5), 1, + sym__identifier_pattern, + STATE(46), 1, + sym_built_in_function, + STATE(362), 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, + [14175] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(647), 1, anon_sym_RBRACE, - ACTIONS(623), 21, + ACTIONS(649), 1, + anon_sym_COMMA, + ACTIONS(645), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -19179,12 +19933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13264] = 3, + [14208] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(639), 1, + ACTIONS(624), 1, anon_sym_RPAREN, - ACTIONS(637), 21, + ACTIONS(653), 1, + anon_sym_COMMA, + ACTIONS(651), 21, sym__identifier_pattern, anon_sym_assert, anon_sym_assert_equal, @@ -19206,826 +19962,920 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_read, anon_sym_to_json, anon_sym_write, - [13294] = 12, + [14241] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(641), 1, - anon_sym_async, - ACTIONS(643), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(218), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13340] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(645), 1, - anon_sym_async, - ACTIONS(647), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(242), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13386] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(253), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13432] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(221), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13478] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(641), 1, - anon_sym_async, - ACTIONS(643), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(220), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13524] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(226), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13570] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(248), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13616] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(645), 1, - anon_sym_async, - ACTIONS(647), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - STATE(243), 1, - sym_block, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13662] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, ACTIONS(657), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13702] = 10, + anon_sym_RBRACE, + ACTIONS(655), 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, + [14271] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - ACTIONS(659), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13742] = 10, + ACTIONS(641), 1, + anon_sym_RBRACE, + ACTIONS(639), 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, + [14301] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, ACTIONS(661), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13782] = 10, + anon_sym_RPAREN, + ACTIONS(659), 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, + [14331] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(379), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(381), 1, + ACTIONS(495), 1, anon_sym_DASH_GT, ACTIONS(663), 1, - anon_sym_EQ_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13822] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, + anon_sym_async, ACTIONS(665), 1, anon_sym_LBRACE, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, + STATE(184), 1, sym_math_operator, - ACTIONS(194), 2, + STATE(185), 1, + sym_logic_operator, + STATE(256), 1, + sym_block, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(190), 4, + ACTIONS(310), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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, - [13862] = 10, + [14377] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(379), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(381), 1, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(663), 1, + anon_sym_async, + ACTIONS(665), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(264), 1, + sym_block, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14423] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, anon_sym_DASH_GT, ACTIONS(667), 1, - anon_sym_RPAREN, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, + anon_sym_async, + ACTIONS(669), 1, + anon_sym_LBRACE, + STATE(184), 1, sym_math_operator, - ACTIONS(194), 2, + STATE(185), 1, + sym_logic_operator, + STATE(252), 1, + sym_block, + ACTIONS(316), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(190), 4, + ACTIONS(310), 4, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(192), 6, + ACTIONS(314), 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, - [13902] = 9, + [14469] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(188), 1, + ACTIONS(312), 1, anon_sym_DASH, - ACTIONS(314), 1, + ACTIONS(493), 1, anon_sym_COLON, - ACTIONS(316), 1, + ACTIONS(495), 1, anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13939] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(186), 1, - anon_sym_COLON, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(196), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [13976] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(308), 1, - anon_sym_COLON, - ACTIONS(310), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [14013] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(206), 1, - anon_sym_COLON, - ACTIONS(208), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [14050] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(334), 1, - anon_sym_COLON, - ACTIONS(336), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [14087] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(188), 1, - anon_sym_DASH, - ACTIONS(379), 1, - anon_sym_COLON, - ACTIONS(381), 1, - anon_sym_DASH_GT, - STATE(193), 1, - sym_logic_operator, - STATE(208), 1, - sym_math_operator, - ACTIONS(194), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(190), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(192), 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, - [14124] = 3, - ACTIONS(3), 1, - sym__comment, ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(669), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_async, + ACTIONS(673), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(244), 1, + sym_block, + ACTIONS(316), 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, - [14148] = 3, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14515] = 12, ACTIONS(3), 1, sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, ACTIONS(675), 1, + anon_sym_async, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(264), 1, + sym_block, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14561] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, anon_sym_DASH_GT, - ACTIONS(673), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(679), 1, + anon_sym_async, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(230), 1, + sym_block, + ACTIONS(316), 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, - [14172] = 2, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14607] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(669), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(671), 1, + anon_sym_async, + ACTIONS(673), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(237), 1, + sym_block, + ACTIONS(316), 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, - [14193] = 2, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14653] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(677), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(679), 1, + anon_sym_async, + ACTIONS(681), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(227), 1, + sym_block, + ACTIONS(316), 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, - [14214] = 2, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14699] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(679), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(675), 1, + anon_sym_async, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(256), 1, + sym_block, + ACTIONS(316), 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, - [14235] = 2, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14745] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(681), 15, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_none, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(667), 1, + anon_sym_async, + ACTIONS(669), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + STATE(250), 1, + sym_block, + ACTIONS(316), 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, - [14256] = 8, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14791] = 10, ACTIONS(3), 1, sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, ACTIONS(683), 1, - anon_sym_LBRACK, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(692), 1, anon_sym_RPAREN, - ACTIONS(694), 1, - anon_sym_option, - STATE(311), 1, - aux_sym_type_repeat1, - STATE(314), 1, - sym_type, - ACTIONS(686), 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, - [14288] = 8, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14831] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(685), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14871] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(687), 1, + anon_sym_EQ_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14911] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(689), 1, + anon_sym_RPAREN, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14951] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(691), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [14991] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(222), 1, + anon_sym_LPAREN, + ACTIONS(226), 1, + anon_sym_LT, + STATE(291), 1, + sym_type_definition, + ACTIONS(220), 2, + anon_sym_DASH, + anon_sym_GT, + ACTIONS(218), 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, + [15023] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + ACTIONS(693), 1, + anon_sym_RPAREN, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15063] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_COLON, + ACTIONS(495), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15100] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(210), 1, + anon_sym_COLON, + ACTIONS(212), 1, + anon_sym_DASH_GT, + ACTIONS(312), 1, + anon_sym_DASH, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15137] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(198), 1, + anon_sym_COLON, + ACTIONS(200), 1, + anon_sym_DASH_GT, + ACTIONS(312), 1, + anon_sym_DASH, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15174] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15211] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(389), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15248] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(312), 1, + anon_sym_DASH, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(332), 1, + anon_sym_DASH_GT, + STATE(184), 1, + sym_math_operator, + STATE(185), 1, + sym_logic_operator, + ACTIONS(316), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(314), 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, + [15285] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(695), 1, + anon_sym_RPAREN, + ACTIONS(270), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(268), 12, + 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, + [15311] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(697), 1, - anon_sym_LBRACK, + anon_sym_RPAREN, + ACTIONS(270), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(268), 12, + 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, + [15337] = 3, + ACTIONS(3), 1, + sym__comment, ACTIONS(701), 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, + 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, + [15361] = 4, + ACTIONS(3), 1, + sym__comment, ACTIONS(703), 1, anon_sym_RPAREN, - ACTIONS(705), 1, - anon_sym_option, - STATE(311), 1, - aux_sym_type_repeat1, - STATE(314), 1, - sym_type, - ACTIONS(699), 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, - [14320] = 8, + ACTIONS(270), 3, + anon_sym_DASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(268), 12, + 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, + [15387] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - anon_sym_option, ACTIONS(707), 1, + anon_sym_DASH_GT, + ACTIONS(705), 15, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(312), 1, - aux_sym_type_repeat1, - STATE(314), 1, - sym_type, - ACTIONS(699), 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, - [14352] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(711), 12, 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, + [15411] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(709), 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, @@ -20034,94 +20884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [14373] = 6, + [15432] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - anon_sym_option, - STATE(350), 1, - sym_type, - ACTIONS(699), 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, - [14399] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - anon_sym_option, - STATE(356), 1, - sym_type, - ACTIONS(699), 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, - [14425] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - anon_sym_option, - STATE(345), 1, - sym_type, - ACTIONS(699), 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, - [14451] = 6, - ACTIONS(3), 1, - sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, - anon_sym_LPAREN, - ACTIONS(705), 1, - anon_sym_option, - STATE(308), 1, - sym_type, - ACTIONS(699), 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, - [14477] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(692), 12, - anon_sym_LBRACK, - anon_sym_none, + ACTIONS(699), 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, @@ -20130,18 +20903,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_num, anon_sym_str, anon_sym_option, - [14495] = 6, + [15453] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(701), 1, + ACTIONS(711), 15, anon_sym_LPAREN, - ACTIONS(705), 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, - STATE(309), 1, + [15474] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(713), 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, + [15495] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(718), 1, + anon_sym_RPAREN, + ACTIONS(720), 1, + anon_sym_LBRACK, + ACTIONS(726), 1, + anon_sym_option, + STATE(327), 1, + aux_sym_type_repeat1, + STATE(330), 1, sym_type, - ACTIONS(699), 8, + ACTIONS(723), 8, anon_sym_none, anon_sym_any, anon_sym_bool, @@ -20150,17 +20965,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_map, anon_sym_num, anon_sym_str, - [14521] = 4, + [15527] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(713), 1, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(731), 1, + anon_sym_RPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(329), 1, + aux_sym_type_repeat1, + STATE(330), 1, + sym_type, + ACTIONS(735), 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, + [15559] = 8, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + ACTIONS(739), 1, + anon_sym_RPAREN, + STATE(327), 1, + aux_sym_type_repeat1, + STATE(330), 1, + sym_type, + ACTIONS(735), 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, + [15591] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(743), 1, + anon_sym_COMMA, + ACTIONS(741), 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, + [15612] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(364), 1, + sym_type, + ACTIONS(735), 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, + [15638] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(718), 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, + [15656] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(325), 1, + sym_type, + ACTIONS(735), 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, + [15682] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(326), 1, + sym_type, + ACTIONS(735), 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, + [15708] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(378), 1, + sym_type, + ACTIONS(735), 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, + [15734] = 6, + ACTIONS(3), 1, + sym__comment, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_option, + STATE(376), 1, + sym_type, + ACTIONS(735), 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, + [15760] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(745), 1, anon_sym_EQ, STATE(33), 1, sym_assignment_operator, ACTIONS(228), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14535] = 3, + [15774] = 3, ACTIONS(3), 1, sym__comment, STATE(33), 1, @@ -20169,895 +21166,944 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14547] = 3, + [15786] = 3, ACTIONS(3), 1, sym__comment, - STATE(37), 1, + STATE(38), 1, sym_assignment_operator, ACTIONS(228), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14559] = 3, + [15798] = 3, ACTIONS(3), 1, sym__comment, - STATE(36), 1, + STATE(34), 1, sym_assignment_operator, ACTIONS(228), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [14571] = 4, + [15810] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(715), 1, + ACTIONS(675), 1, anon_sym_async, - ACTIONS(717), 1, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(134), 1, + STATE(170), 1, sym_block, - [14584] = 4, + [15823] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(649), 1, + ACTIONS(671), 1, anon_sym_async, - ACTIONS(651), 1, + ACTIONS(673), 1, anon_sym_LBRACE, - STATE(95), 1, + STATE(232), 1, sym_block, - [14597] = 4, + [15836] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(653), 1, + ACTIONS(675), 1, anon_sym_async, - ACTIONS(655), 1, + ACTIONS(677), 1, anon_sym_LBRACE, - STATE(55), 1, + STATE(174), 1, sym_block, - [14610] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(719), 1, - anon_sym_EQ, - ACTIONS(721), 1, - anon_sym_LT, - STATE(351), 1, - sym_type_definition, - [14623] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_block, - [14636] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(653), 1, - anon_sym_async, - ACTIONS(655), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_block, - [14649] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(715), 1, - anon_sym_async, - ACTIONS(717), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_block, - [14662] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(108), 1, - sym_block, - [14675] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(649), 1, - anon_sym_async, - ACTIONS(651), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_block, - [14688] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(280), 1, - sym_type_definition, - [14698] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(331), 1, - sym_type_definition, - [14708] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(326), 1, - sym_type_definition, - [14718] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(327), 1, - sym_type_definition, - [14728] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(325), 1, - sym_type_definition, - [14738] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(330), 1, - sym_type_definition, - [14748] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(721), 1, - anon_sym_LT, - STATE(332), 1, - sym_type_definition, - [14758] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(723), 1, - anon_sym_LBRACE, - [14765] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(725), 1, - anon_sym_LPAREN, - [14772] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(727), 1, - anon_sym_LPAREN, - [14779] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(729), 1, - ts_builtin_sym_end, - [14786] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(731), 1, - anon_sym_RPAREN, - [14793] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(733), 1, - anon_sym_LPAREN, - [14800] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(735), 1, - anon_sym_in, - [14807] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(737), 1, - anon_sym_LPAREN, - [14814] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(739), 1, - anon_sym_LPAREN, - [14821] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(741), 1, - anon_sym_GT, - [14828] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(743), 1, - anon_sym_EQ, - [14835] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(745), 1, - anon_sym_in, - [14842] = 2, + [15849] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(747), 1, - anon_sym_LBRACE, - [14849] = 2, + anon_sym_EQ, + ACTIONS(749), 1, + anon_sym_LT, + STATE(375), 1, + sym_type_definition, + [15862] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(749), 1, - anon_sym_LPAREN, - [14856] = 2, + ACTIONS(675), 1, + anon_sym_async, + ACTIONS(677), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_block, + [15875] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(671), 1, + anon_sym_async, + ACTIONS(673), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_block, + [15888] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(663), 1, + anon_sym_async, + ACTIONS(665), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_block, + [15901] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(663), 1, + anon_sym_async, + ACTIONS(665), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_block, + [15914] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(671), 1, + anon_sym_async, + ACTIONS(673), 1, + anon_sym_LBRACE, + STATE(67), 1, + sym_block, + [15927] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(663), 1, + anon_sym_async, + ACTIONS(665), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_block, + [15940] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(347), 1, + sym_type_definition, + [15950] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(348), 1, + sym_type_definition, + [15960] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(343), 1, + sym_type_definition, + [15970] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(346), 1, + sym_type_definition, + [15980] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(291), 1, + sym_type_definition, + [15990] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(341), 1, + sym_type_definition, + [16000] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(749), 1, + anon_sym_LT, + STATE(349), 1, + sym_type_definition, + [16010] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(687), 1, anon_sym_EQ_GT, - [14863] = 2, + [16017] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(751), 1, - anon_sym_RBRACK, - [14870] = 2, + anon_sym_LBRACE, + [16024] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(753), 1, - anon_sym_LBRACE, - [14877] = 2, + anon_sym_LPAREN, + [16031] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(755), 1, - anon_sym_LBRACE, - [14884] = 2, + anon_sym_LPAREN, + [16038] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(757), 1, - anon_sym_LPAREN, - [14891] = 2, + anon_sym_in, + [16045] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(759), 1, + ts_builtin_sym_end, + [16052] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(761), 1, + anon_sym_RPAREN, + [16059] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(763), 1, + anon_sym_LPAREN, + [16066] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(765), 1, + anon_sym_LPAREN, + [16073] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(767), 1, + anon_sym_LPAREN, + [16080] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(769), 1, anon_sym_LBRACE, + [16087] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(771), 1, + anon_sym_LPAREN, + [16094] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(773), 1, + anon_sym_LBRACE, + [16101] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(775), 1, + anon_sym_in, + [16108] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(777), 1, + anon_sym_LBRACE, + [16115] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(779), 1, + anon_sym_LBRACE, + [16122] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(781), 1, + anon_sym_in, + [16129] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(783), 1, + anon_sym_EQ, + [16136] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(785), 1, + anon_sym_GT, + [16143] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(787), 1, + anon_sym_LPAREN, + [16150] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(789), 1, + anon_sym_RBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(78)] = 0, - [SMALL_STATE(79)] = 81, - [SMALL_STATE(80)] = 154, - [SMALL_STATE(81)] = 223, - [SMALL_STATE(82)] = 294, - [SMALL_STATE(83)] = 363, - [SMALL_STATE(84)] = 443, - [SMALL_STATE(85)] = 515, - [SMALL_STATE(86)] = 583, - [SMALL_STATE(87)] = 646, - [SMALL_STATE(88)] = 709, - [SMALL_STATE(89)] = 772, - [SMALL_STATE(90)] = 835, - [SMALL_STATE(91)] = 900, - [SMALL_STATE(92)] = 963, - [SMALL_STATE(93)] = 1026, - [SMALL_STATE(94)] = 1089, - [SMALL_STATE(95)] = 1152, - [SMALL_STATE(96)] = 1215, - [SMALL_STATE(97)] = 1278, - [SMALL_STATE(98)] = 1341, - [SMALL_STATE(99)] = 1404, - [SMALL_STATE(100)] = 1469, - [SMALL_STATE(101)] = 1532, - [SMALL_STATE(102)] = 1595, - [SMALL_STATE(103)] = 1658, - [SMALL_STATE(104)] = 1721, - [SMALL_STATE(105)] = 1784, - [SMALL_STATE(106)] = 1847, - [SMALL_STATE(107)] = 1910, - [SMALL_STATE(108)] = 1973, - [SMALL_STATE(109)] = 2036, - [SMALL_STATE(110)] = 2110, - [SMALL_STATE(111)] = 2179, - [SMALL_STATE(112)] = 2256, - [SMALL_STATE(113)] = 2331, - [SMALL_STATE(114)] = 2406, - [SMALL_STATE(115)] = 2482, - [SMALL_STATE(116)] = 2544, - [SMALL_STATE(117)] = 2620, - [SMALL_STATE(118)] = 2684, - [SMALL_STATE(119)] = 2758, - [SMALL_STATE(120)] = 2820, - [SMALL_STATE(121)] = 2886, - [SMALL_STATE(122)] = 2979, - [SMALL_STATE(123)] = 3072, - [SMALL_STATE(124)] = 3133, - [SMALL_STATE(125)] = 3206, - [SMALL_STATE(126)] = 3271, - [SMALL_STATE(127)] = 3364, - [SMALL_STATE(128)] = 3420, - [SMALL_STATE(129)] = 3510, - [SMALL_STATE(130)] = 3600, - [SMALL_STATE(131)] = 3690, - [SMALL_STATE(132)] = 3780, - [SMALL_STATE(133)] = 3870, - [SMALL_STATE(134)] = 3926, - [SMALL_STATE(135)] = 3982, - [SMALL_STATE(136)] = 4038, - [SMALL_STATE(137)] = 4096, - [SMALL_STATE(138)] = 4186, - [SMALL_STATE(139)] = 4276, - [SMALL_STATE(140)] = 4366, - [SMALL_STATE(141)] = 4456, - [SMALL_STATE(142)] = 4546, - [SMALL_STATE(143)] = 4604, - [SMALL_STATE(144)] = 4660, - [SMALL_STATE(145)] = 4750, - [SMALL_STATE(146)] = 4806, - [SMALL_STATE(147)] = 4862, - [SMALL_STATE(148)] = 4918, - [SMALL_STATE(149)] = 4974, - [SMALL_STATE(150)] = 5064, - [SMALL_STATE(151)] = 5120, - [SMALL_STATE(152)] = 5176, - [SMALL_STATE(153)] = 5232, - [SMALL_STATE(154)] = 5322, - [SMALL_STATE(155)] = 5378, - [SMALL_STATE(156)] = 5434, - [SMALL_STATE(157)] = 5490, - [SMALL_STATE(158)] = 5580, - [SMALL_STATE(159)] = 5636, - [SMALL_STATE(160)] = 5726, - [SMALL_STATE(161)] = 5816, - [SMALL_STATE(162)] = 5872, - [SMALL_STATE(163)] = 5962, - [SMALL_STATE(164)] = 6018, - [SMALL_STATE(165)] = 6074, - [SMALL_STATE(166)] = 6130, - [SMALL_STATE(167)] = 6220, - [SMALL_STATE(168)] = 6310, - [SMALL_STATE(169)] = 6366, - [SMALL_STATE(170)] = 6450, - [SMALL_STATE(171)] = 6534, - [SMALL_STATE(172)] = 6618, - [SMALL_STATE(173)] = 6702, - [SMALL_STATE(174)] = 6786, - [SMALL_STATE(175)] = 6870, - [SMALL_STATE(176)] = 6954, - [SMALL_STATE(177)] = 7038, - [SMALL_STATE(178)] = 7122, - [SMALL_STATE(179)] = 7206, - [SMALL_STATE(180)] = 7290, - [SMALL_STATE(181)] = 7374, - [SMALL_STATE(182)] = 7458, - [SMALL_STATE(183)] = 7542, - [SMALL_STATE(184)] = 7626, - [SMALL_STATE(185)] = 7710, - [SMALL_STATE(186)] = 7772, - [SMALL_STATE(187)] = 7856, - [SMALL_STATE(188)] = 7940, - [SMALL_STATE(189)] = 8024, - [SMALL_STATE(190)] = 8108, - [SMALL_STATE(191)] = 8192, - [SMALL_STATE(192)] = 8276, - [SMALL_STATE(193)] = 8360, - [SMALL_STATE(194)] = 8444, - [SMALL_STATE(195)] = 8528, - [SMALL_STATE(196)] = 8612, - [SMALL_STATE(197)] = 8696, - [SMALL_STATE(198)] = 8780, - [SMALL_STATE(199)] = 8864, - [SMALL_STATE(200)] = 8948, - [SMALL_STATE(201)] = 9032, - [SMALL_STATE(202)] = 9094, - [SMALL_STATE(203)] = 9178, - [SMALL_STATE(204)] = 9262, - [SMALL_STATE(205)] = 9346, - [SMALL_STATE(206)] = 9430, - [SMALL_STATE(207)] = 9514, - [SMALL_STATE(208)] = 9598, - [SMALL_STATE(209)] = 9682, - [SMALL_STATE(210)] = 9766, - [SMALL_STATE(211)] = 9850, - [SMALL_STATE(212)] = 9934, - [SMALL_STATE(213)] = 10018, - [SMALL_STATE(214)] = 10102, - [SMALL_STATE(215)] = 10159, - [SMALL_STATE(216)] = 10224, - [SMALL_STATE(217)] = 10284, - [SMALL_STATE(218)] = 10335, - [SMALL_STATE(219)] = 10386, - [SMALL_STATE(220)] = 10437, - [SMALL_STATE(221)] = 10488, - [SMALL_STATE(222)] = 10537, - [SMALL_STATE(223)] = 10586, - [SMALL_STATE(224)] = 10651, - [SMALL_STATE(225)] = 10700, - [SMALL_STATE(226)] = 10749, - [SMALL_STATE(227)] = 10798, - [SMALL_STATE(228)] = 10865, - [SMALL_STATE(229)] = 10914, - [SMALL_STATE(230)] = 10963, - [SMALL_STATE(231)] = 11012, - [SMALL_STATE(232)] = 11077, - [SMALL_STATE(233)] = 11126, - [SMALL_STATE(234)] = 11175, - [SMALL_STATE(235)] = 11224, - [SMALL_STATE(236)] = 11275, - [SMALL_STATE(237)] = 11331, - [SMALL_STATE(238)] = 11387, - [SMALL_STATE(239)] = 11438, - [SMALL_STATE(240)] = 11484, - [SMALL_STATE(241)] = 11529, - [SMALL_STATE(242)] = 11574, - [SMALL_STATE(243)] = 11619, - [SMALL_STATE(244)] = 11664, - [SMALL_STATE(245)] = 11707, - [SMALL_STATE(246)] = 11750, - [SMALL_STATE(247)] = 11793, - [SMALL_STATE(248)] = 11836, - [SMALL_STATE(249)] = 11879, - [SMALL_STATE(250)] = 11922, - [SMALL_STATE(251)] = 11965, - [SMALL_STATE(252)] = 12008, - [SMALL_STATE(253)] = 12051, - [SMALL_STATE(254)] = 12094, - [SMALL_STATE(255)] = 12139, - [SMALL_STATE(256)] = 12182, - [SMALL_STATE(257)] = 12226, - [SMALL_STATE(258)] = 12267, - [SMALL_STATE(259)] = 12307, - [SMALL_STATE(260)] = 12347, - [SMALL_STATE(261)] = 12386, - [SMALL_STATE(262)] = 12425, - [SMALL_STATE(263)] = 12461, - [SMALL_STATE(264)] = 12502, - [SMALL_STATE(265)] = 12543, - [SMALL_STATE(266)] = 12584, - [SMALL_STATE(267)] = 12625, - [SMALL_STATE(268)] = 12666, - [SMALL_STATE(269)] = 12707, - [SMALL_STATE(270)] = 12748, - [SMALL_STATE(271)] = 12789, - [SMALL_STATE(272)] = 12830, - [SMALL_STATE(273)] = 12871, - [SMALL_STATE(274)] = 12912, - [SMALL_STATE(275)] = 12953, - [SMALL_STATE(276)] = 12994, - [SMALL_STATE(277)] = 13035, - [SMALL_STATE(278)] = 13068, - [SMALL_STATE(279)] = 13103, - [SMALL_STATE(280)] = 13136, - [SMALL_STATE(281)] = 13169, - [SMALL_STATE(282)] = 13204, - [SMALL_STATE(283)] = 13234, - [SMALL_STATE(284)] = 13264, - [SMALL_STATE(285)] = 13294, - [SMALL_STATE(286)] = 13340, - [SMALL_STATE(287)] = 13386, - [SMALL_STATE(288)] = 13432, - [SMALL_STATE(289)] = 13478, - [SMALL_STATE(290)] = 13524, - [SMALL_STATE(291)] = 13570, - [SMALL_STATE(292)] = 13616, - [SMALL_STATE(293)] = 13662, - [SMALL_STATE(294)] = 13702, - [SMALL_STATE(295)] = 13742, - [SMALL_STATE(296)] = 13782, - [SMALL_STATE(297)] = 13822, - [SMALL_STATE(298)] = 13862, - [SMALL_STATE(299)] = 13902, - [SMALL_STATE(300)] = 13939, - [SMALL_STATE(301)] = 13976, - [SMALL_STATE(302)] = 14013, - [SMALL_STATE(303)] = 14050, - [SMALL_STATE(304)] = 14087, - [SMALL_STATE(305)] = 14124, - [SMALL_STATE(306)] = 14148, - [SMALL_STATE(307)] = 14172, - [SMALL_STATE(308)] = 14193, - [SMALL_STATE(309)] = 14214, - [SMALL_STATE(310)] = 14235, - [SMALL_STATE(311)] = 14256, - [SMALL_STATE(312)] = 14288, - [SMALL_STATE(313)] = 14320, - [SMALL_STATE(314)] = 14352, - [SMALL_STATE(315)] = 14373, - [SMALL_STATE(316)] = 14399, - [SMALL_STATE(317)] = 14425, - [SMALL_STATE(318)] = 14451, - [SMALL_STATE(319)] = 14477, - [SMALL_STATE(320)] = 14495, - [SMALL_STATE(321)] = 14521, - [SMALL_STATE(322)] = 14535, - [SMALL_STATE(323)] = 14547, - [SMALL_STATE(324)] = 14559, - [SMALL_STATE(325)] = 14571, - [SMALL_STATE(326)] = 14584, - [SMALL_STATE(327)] = 14597, - [SMALL_STATE(328)] = 14610, - [SMALL_STATE(329)] = 14623, - [SMALL_STATE(330)] = 14636, - [SMALL_STATE(331)] = 14649, - [SMALL_STATE(332)] = 14662, - [SMALL_STATE(333)] = 14675, - [SMALL_STATE(334)] = 14688, - [SMALL_STATE(335)] = 14698, - [SMALL_STATE(336)] = 14708, - [SMALL_STATE(337)] = 14718, - [SMALL_STATE(338)] = 14728, - [SMALL_STATE(339)] = 14738, - [SMALL_STATE(340)] = 14748, - [SMALL_STATE(341)] = 14758, - [SMALL_STATE(342)] = 14765, - [SMALL_STATE(343)] = 14772, - [SMALL_STATE(344)] = 14779, - [SMALL_STATE(345)] = 14786, - [SMALL_STATE(346)] = 14793, - [SMALL_STATE(347)] = 14800, - [SMALL_STATE(348)] = 14807, - [SMALL_STATE(349)] = 14814, - [SMALL_STATE(350)] = 14821, - [SMALL_STATE(351)] = 14828, - [SMALL_STATE(352)] = 14835, - [SMALL_STATE(353)] = 14842, - [SMALL_STATE(354)] = 14849, - [SMALL_STATE(355)] = 14856, - [SMALL_STATE(356)] = 14863, - [SMALL_STATE(357)] = 14870, - [SMALL_STATE(358)] = 14877, - [SMALL_STATE(359)] = 14884, - [SMALL_STATE(360)] = 14891, + [SMALL_STATE(76)] = 0, + [SMALL_STATE(77)] = 82, + [SMALL_STATE(78)] = 166, + [SMALL_STATE(79)] = 248, + [SMALL_STATE(80)] = 317, + [SMALL_STATE(81)] = 386, + [SMALL_STATE(82)] = 457, + [SMALL_STATE(83)] = 530, + [SMALL_STATE(84)] = 603, + [SMALL_STATE(85)] = 671, + [SMALL_STATE(86)] = 743, + [SMALL_STATE(87)] = 815, + [SMALL_STATE(88)] = 878, + [SMALL_STATE(89)] = 941, + [SMALL_STATE(90)] = 1004, + [SMALL_STATE(91)] = 1067, + [SMALL_STATE(92)] = 1130, + [SMALL_STATE(93)] = 1193, + [SMALL_STATE(94)] = 1256, + [SMALL_STATE(95)] = 1319, + [SMALL_STATE(96)] = 1382, + [SMALL_STATE(97)] = 1445, + [SMALL_STATE(98)] = 1508, + [SMALL_STATE(99)] = 1571, + [SMALL_STATE(100)] = 1634, + [SMALL_STATE(101)] = 1697, + [SMALL_STATE(102)] = 1760, + [SMALL_STATE(103)] = 1823, + [SMALL_STATE(104)] = 1886, + [SMALL_STATE(105)] = 1949, + [SMALL_STATE(106)] = 2014, + [SMALL_STATE(107)] = 2079, + [SMALL_STATE(108)] = 2142, + [SMALL_STATE(109)] = 2205, + [SMALL_STATE(110)] = 2268, + [SMALL_STATE(111)] = 2331, + [SMALL_STATE(112)] = 2405, + [SMALL_STATE(113)] = 2474, + [SMALL_STATE(114)] = 2549, + [SMALL_STATE(115)] = 2626, + [SMALL_STATE(116)] = 2701, + [SMALL_STATE(117)] = 2777, + [SMALL_STATE(118)] = 2871, + [SMALL_STATE(119)] = 2935, + [SMALL_STATE(120)] = 2997, + [SMALL_STATE(121)] = 3091, + [SMALL_STATE(122)] = 3185, + [SMALL_STATE(123)] = 3247, + [SMALL_STATE(124)] = 3313, + [SMALL_STATE(125)] = 3389, + [SMALL_STATE(126)] = 3455, + [SMALL_STATE(127)] = 3546, + [SMALL_STATE(128)] = 3637, + [SMALL_STATE(129)] = 3730, + [SMALL_STATE(130)] = 3821, + [SMALL_STATE(131)] = 3912, + [SMALL_STATE(132)] = 4003, + [SMALL_STATE(133)] = 4094, + [SMALL_STATE(134)] = 4185, + [SMALL_STATE(135)] = 4276, + [SMALL_STATE(136)] = 4367, + [SMALL_STATE(137)] = 4458, + [SMALL_STATE(138)] = 4549, + [SMALL_STATE(139)] = 4640, + [SMALL_STATE(140)] = 4733, + [SMALL_STATE(141)] = 4824, + [SMALL_STATE(142)] = 4917, + [SMALL_STATE(143)] = 5010, + [SMALL_STATE(144)] = 5101, + [SMALL_STATE(145)] = 5192, + [SMALL_STATE(146)] = 5257, + [SMALL_STATE(147)] = 5322, + [SMALL_STATE(148)] = 5415, + [SMALL_STATE(149)] = 5476, + [SMALL_STATE(150)] = 5567, + [SMALL_STATE(151)] = 5658, + [SMALL_STATE(152)] = 5749, + [SMALL_STATE(153)] = 5840, + [SMALL_STATE(154)] = 5896, + [SMALL_STATE(155)] = 5952, + [SMALL_STATE(156)] = 6008, + [SMALL_STATE(157)] = 6064, + [SMALL_STATE(158)] = 6120, + [SMALL_STATE(159)] = 6176, + [SMALL_STATE(160)] = 6232, + [SMALL_STATE(161)] = 6288, + [SMALL_STATE(162)] = 6344, + [SMALL_STATE(163)] = 6400, + [SMALL_STATE(164)] = 6456, + [SMALL_STATE(165)] = 6512, + [SMALL_STATE(166)] = 6568, + [SMALL_STATE(167)] = 6624, + [SMALL_STATE(168)] = 6682, + [SMALL_STATE(169)] = 6740, + [SMALL_STATE(170)] = 6796, + [SMALL_STATE(171)] = 6852, + [SMALL_STATE(172)] = 6908, + [SMALL_STATE(173)] = 6964, + [SMALL_STATE(174)] = 7020, + [SMALL_STATE(175)] = 7076, + [SMALL_STATE(176)] = 7132, + [SMALL_STATE(177)] = 7188, + [SMALL_STATE(178)] = 7273, + [SMALL_STATE(179)] = 7358, + [SMALL_STATE(180)] = 7443, + [SMALL_STATE(181)] = 7528, + [SMALL_STATE(182)] = 7613, + [SMALL_STATE(183)] = 7698, + [SMALL_STATE(184)] = 7783, + [SMALL_STATE(185)] = 7868, + [SMALL_STATE(186)] = 7953, + [SMALL_STATE(187)] = 8038, + [SMALL_STATE(188)] = 8123, + [SMALL_STATE(189)] = 8208, + [SMALL_STATE(190)] = 8293, + [SMALL_STATE(191)] = 8378, + [SMALL_STATE(192)] = 8463, + [SMALL_STATE(193)] = 8548, + [SMALL_STATE(194)] = 8633, + [SMALL_STATE(195)] = 8718, + [SMALL_STATE(196)] = 8803, + [SMALL_STATE(197)] = 8888, + [SMALL_STATE(198)] = 8973, + [SMALL_STATE(199)] = 9058, + [SMALL_STATE(200)] = 9143, + [SMALL_STATE(201)] = 9228, + [SMALL_STATE(202)] = 9313, + [SMALL_STATE(203)] = 9398, + [SMALL_STATE(204)] = 9483, + [SMALL_STATE(205)] = 9568, + [SMALL_STATE(206)] = 9653, + [SMALL_STATE(207)] = 9738, + [SMALL_STATE(208)] = 9823, + [SMALL_STATE(209)] = 9908, + [SMALL_STATE(210)] = 9993, + [SMALL_STATE(211)] = 10078, + [SMALL_STATE(212)] = 10163, + [SMALL_STATE(213)] = 10248, + [SMALL_STATE(214)] = 10333, + [SMALL_STATE(215)] = 10418, + [SMALL_STATE(216)] = 10503, + [SMALL_STATE(217)] = 10588, + [SMALL_STATE(218)] = 10673, + [SMALL_STATE(219)] = 10758, + [SMALL_STATE(220)] = 10843, + [SMALL_STATE(221)] = 10928, + [SMALL_STATE(222)] = 11013, + [SMALL_STATE(223)] = 11075, + [SMALL_STATE(224)] = 11137, + [SMALL_STATE(225)] = 11202, + [SMALL_STATE(226)] = 11259, + [SMALL_STATE(227)] = 11319, + [SMALL_STATE(228)] = 11370, + [SMALL_STATE(229)] = 11421, + [SMALL_STATE(230)] = 11472, + [SMALL_STATE(231)] = 11523, + [SMALL_STATE(232)] = 11572, + [SMALL_STATE(233)] = 11621, + [SMALL_STATE(234)] = 11686, + [SMALL_STATE(235)] = 11753, + [SMALL_STATE(236)] = 11802, + [SMALL_STATE(237)] = 11853, + [SMALL_STATE(238)] = 11902, + [SMALL_STATE(239)] = 11951, + [SMALL_STATE(240)] = 12000, + [SMALL_STATE(241)] = 12065, + [SMALL_STATE(242)] = 12114, + [SMALL_STATE(243)] = 12163, + [SMALL_STATE(244)] = 12212, + [SMALL_STATE(245)] = 12261, + [SMALL_STATE(246)] = 12310, + [SMALL_STATE(247)] = 12366, + [SMALL_STATE(248)] = 12422, + [SMALL_STATE(249)] = 12473, + [SMALL_STATE(250)] = 12519, + [SMALL_STATE(251)] = 12564, + [SMALL_STATE(252)] = 12609, + [SMALL_STATE(253)] = 12654, + [SMALL_STATE(254)] = 12699, + [SMALL_STATE(255)] = 12742, + [SMALL_STATE(256)] = 12785, + [SMALL_STATE(257)] = 12828, + [SMALL_STATE(258)] = 12871, + [SMALL_STATE(259)] = 12916, + [SMALL_STATE(260)] = 12959, + [SMALL_STATE(261)] = 13002, + [SMALL_STATE(262)] = 13045, + [SMALL_STATE(263)] = 13088, + [SMALL_STATE(264)] = 13131, + [SMALL_STATE(265)] = 13174, + [SMALL_STATE(266)] = 13217, + [SMALL_STATE(267)] = 13261, + [SMALL_STATE(268)] = 13302, + [SMALL_STATE(269)] = 13342, + [SMALL_STATE(270)] = 13382, + [SMALL_STATE(271)] = 13421, + [SMALL_STATE(272)] = 13460, + [SMALL_STATE(273)] = 13505, + [SMALL_STATE(274)] = 13550, + [SMALL_STATE(275)] = 13586, + [SMALL_STATE(276)] = 13627, + [SMALL_STATE(277)] = 13668, + [SMALL_STATE(278)] = 13709, + [SMALL_STATE(279)] = 13750, + [SMALL_STATE(280)] = 13791, + [SMALL_STATE(281)] = 13832, + [SMALL_STATE(282)] = 13873, + [SMALL_STATE(283)] = 13914, + [SMALL_STATE(284)] = 13955, + [SMALL_STATE(285)] = 13996, + [SMALL_STATE(286)] = 14037, + [SMALL_STATE(287)] = 14072, + [SMALL_STATE(288)] = 14105, + [SMALL_STATE(289)] = 14140, + [SMALL_STATE(290)] = 14175, + [SMALL_STATE(291)] = 14208, + [SMALL_STATE(292)] = 14241, + [SMALL_STATE(293)] = 14271, + [SMALL_STATE(294)] = 14301, + [SMALL_STATE(295)] = 14331, + [SMALL_STATE(296)] = 14377, + [SMALL_STATE(297)] = 14423, + [SMALL_STATE(298)] = 14469, + [SMALL_STATE(299)] = 14515, + [SMALL_STATE(300)] = 14561, + [SMALL_STATE(301)] = 14607, + [SMALL_STATE(302)] = 14653, + [SMALL_STATE(303)] = 14699, + [SMALL_STATE(304)] = 14745, + [SMALL_STATE(305)] = 14791, + [SMALL_STATE(306)] = 14831, + [SMALL_STATE(307)] = 14871, + [SMALL_STATE(308)] = 14911, + [SMALL_STATE(309)] = 14951, + [SMALL_STATE(310)] = 14991, + [SMALL_STATE(311)] = 15023, + [SMALL_STATE(312)] = 15063, + [SMALL_STATE(313)] = 15100, + [SMALL_STATE(314)] = 15137, + [SMALL_STATE(315)] = 15174, + [SMALL_STATE(316)] = 15211, + [SMALL_STATE(317)] = 15248, + [SMALL_STATE(318)] = 15285, + [SMALL_STATE(319)] = 15311, + [SMALL_STATE(320)] = 15337, + [SMALL_STATE(321)] = 15361, + [SMALL_STATE(322)] = 15387, + [SMALL_STATE(323)] = 15411, + [SMALL_STATE(324)] = 15432, + [SMALL_STATE(325)] = 15453, + [SMALL_STATE(326)] = 15474, + [SMALL_STATE(327)] = 15495, + [SMALL_STATE(328)] = 15527, + [SMALL_STATE(329)] = 15559, + [SMALL_STATE(330)] = 15591, + [SMALL_STATE(331)] = 15612, + [SMALL_STATE(332)] = 15638, + [SMALL_STATE(333)] = 15656, + [SMALL_STATE(334)] = 15682, + [SMALL_STATE(335)] = 15708, + [SMALL_STATE(336)] = 15734, + [SMALL_STATE(337)] = 15760, + [SMALL_STATE(338)] = 15774, + [SMALL_STATE(339)] = 15786, + [SMALL_STATE(340)] = 15798, + [SMALL_STATE(341)] = 15810, + [SMALL_STATE(342)] = 15823, + [SMALL_STATE(343)] = 15836, + [SMALL_STATE(344)] = 15849, + [SMALL_STATE(345)] = 15862, + [SMALL_STATE(346)] = 15875, + [SMALL_STATE(347)] = 15888, + [SMALL_STATE(348)] = 15901, + [SMALL_STATE(349)] = 15914, + [SMALL_STATE(350)] = 15927, + [SMALL_STATE(351)] = 15940, + [SMALL_STATE(352)] = 15950, + [SMALL_STATE(353)] = 15960, + [SMALL_STATE(354)] = 15970, + [SMALL_STATE(355)] = 15980, + [SMALL_STATE(356)] = 15990, + [SMALL_STATE(357)] = 16000, + [SMALL_STATE(358)] = 16010, + [SMALL_STATE(359)] = 16017, + [SMALL_STATE(360)] = 16024, + [SMALL_STATE(361)] = 16031, + [SMALL_STATE(362)] = 16038, + [SMALL_STATE(363)] = 16045, + [SMALL_STATE(364)] = 16052, + [SMALL_STATE(365)] = 16059, + [SMALL_STATE(366)] = 16066, + [SMALL_STATE(367)] = 16073, + [SMALL_STATE(368)] = 16080, + [SMALL_STATE(369)] = 16087, + [SMALL_STATE(370)] = 16094, + [SMALL_STATE(371)] = 16101, + [SMALL_STATE(372)] = 16108, + [SMALL_STATE(373)] = 16115, + [SMALL_STATE(374)] = 16122, + [SMALL_STATE(375)] = 16129, + [SMALL_STATE(376)] = 16136, + [SMALL_STATE(377)] = 16143, + [SMALL_STATE(378)] = 16150, }; 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(50), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(50), - [48] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(360), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(74), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(74), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(129), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(54), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(359), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(276), - [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(209), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(169), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(204), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(281), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(281), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(202), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49), - [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [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(46), + [44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(370), + [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4), + [50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(147), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75), + [56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(75), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(73), + [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(144), + [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(66), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(365), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(193), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(194), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(195), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(288), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(288), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(196), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(50), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [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}}, REDUCE(sym__expression_kind, 1), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 1), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 1), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6), + [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 = false}}, SHIFT(30), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 1), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 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_map, 3), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(152), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(263), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(151), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(151), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(150), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(132), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(147), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(354), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(272), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(355), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(146), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(93), - [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(269), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(96), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(102), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(167), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(348), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(275), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(94), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(93), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(269), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(96), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(102), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(167), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(348), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(275), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(94), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(188), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(181), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(50), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(49), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(50), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(49), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 4), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 5), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 3), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(316), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(310), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(313), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(349), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [729] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option, 4), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option, 4), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(155), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(284), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(128), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(156), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(156), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(157), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(143), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(158), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(360), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(358), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(160), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(95), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(283), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(141), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(94), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(94), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(93), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(134), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(92), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(369), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(100), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(95), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(283), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(141), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(94), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(94), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(93), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(134), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(92), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(369), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(100), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [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(188), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [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(188), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [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_statement, 2), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(218), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 4), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 4), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(46), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(50), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(46), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(50), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 4), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 2), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 5), + [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 5), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_repeat1, 3), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 3), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(328), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(335), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(323), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(377), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [759] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), }; #ifdef __cplusplus