diff --git a/examples/async.ds b/examples/async.ds new file mode 100644 index 0000000..28a7c59 --- /dev/null +++ b/examples/async.ds @@ -0,0 +1,45 @@ +(output "This will print first.") +(output "This will print second.") + +create_random_numbers = |count| => { + numbers = [] + + while (length numbers) < count { + numbers += (random_integer) + } +} + +do_second = async { + { + (create_random_numbers 1000) + (output "Made 1000 numbers") + } + { + (create_random_numbers 100) + (output "Made 100 numbers") + } + { + (create_random_numbers 10) + (output "Made 10 numbers") + } +} + +do_first = async { + { + (create_random_numbers 400) + (output "Made 400 numbers") + } + { + (create_random_numbers 40) + (output "Made 40 numbers") + } + { + (create_random_numbers 4) + (output "Made 4 numbers") + } +} + +do_first.await +do_second.await + +(output "This will print last.") diff --git a/examples/select.ds b/examples/select.ds new file mode 100644 index 0000000..257af7e --- /dev/null +++ b/examples/select.ds @@ -0,0 +1,15 @@ +my_table = table |text number bool| [ + ["a", 1, true] + ["b", 2, true] + ["a", 3, true] +] + +test_table = table |text bool| [ + ["a", true] + ["b", true] + ["a", true] +] + +test_select = select |text bool| from my_table; + +(assert_equal test_select, test_table) diff --git a/src/abstract_tree/function_call.rs b/src/abstract_tree/function_call.rs index fc3ed19..02b9954 100644 --- a/src/abstract_tree/function_call.rs +++ b/src/abstract_tree/function_call.rs @@ -48,8 +48,9 @@ impl AbstractTree for FunctionCall { } fn run(&self, source: &str, context: &mut Map) -> Result { + let mut function_context = Map::clone_from(context); let (name, arguments) = match self { - FunctionCall::BuiltIn(function) => return function.run(source, context), + FunctionCall::BuiltIn(function) => return function.run(source, &mut function_context), FunctionCall::ContextDefined { name, arguments } => (name, arguments), }; @@ -58,7 +59,6 @@ impl AbstractTree for FunctionCall { } else { return Err(Error::FunctionIdentifierNotFound(name.clone())); }; - let mut function_context = Map::clone_from(context); if let Some(parameters) = definition.identifiers() { let parameter_expression_pairs = parameters.iter().zip(arguments.iter()); diff --git a/src/abstract_tree/select.rs b/src/abstract_tree/select.rs index 63b9225..4f926ef 100644 --- a/src/abstract_tree/select.rs +++ b/src/abstract_tree/select.rs @@ -7,49 +7,36 @@ use crate::{AbstractTree, Block, Expression, Identifier, Map, Result, Table, Val pub struct Select { identifiers: Vec, expression: Expression, - item: Option, + block: Option, } impl AbstractTree for Select { fn from_syntax_node(source: &str, node: Node) -> Result { - let child_count = node.child_count(); let mut identifiers = Vec::new(); + let identifier_list = node.child(1).unwrap(); - for index in 2..child_count - 4 { - let node = node.child(index).unwrap(); + for index in 1..identifier_list.child_count() - 1 { + let node = identifier_list.child(index).unwrap(); - if node.kind() == "identifier" { + if node.is_named() { let identifier = Identifier::from_syntax_node(source, node)?; identifiers.push(identifier); } - - if node.kind() == ">" { - break; - } } - let final_node = node.child(child_count - 1).unwrap(); + let expression_node = node.child(3).unwrap(); + let expression = Expression::from_syntax_node(source, expression_node)?; - let item = if final_node.kind() == "}" { - let item_node = node.child(child_count - 2).unwrap(); - - Some(Block::from_syntax_node(source, item_node)?) + let block = if let Some(block_node) = node.child(4) { + Some(Block::from_syntax_node(source, block_node)?) } else { None }; - let expression_node = if item.is_some() { - node.child(child_count - 4).unwrap() - } else { - node.child(child_count - 1).unwrap() - }; - - let expression = Expression::from_syntax_node(source, expression_node)?; - Ok(Select { identifiers, expression, - item, + block, }) } @@ -99,7 +86,7 @@ impl AbstractTree for Select { } } - if let Some(where_clause) = &self.item { + if let Some(where_clause) = &self.block { let should_include = where_clause.run(source, &mut row_context)?.as_boolean()?; if should_include { diff --git a/tests/dust_examples.rs b/tests/dust_examples.rs index 80079e2..f1a3327 100644 --- a/tests/dust_examples.rs +++ b/tests/dust_examples.rs @@ -59,6 +59,13 @@ fn remove_loop() { evaluate(&file_contents).unwrap(); } +#[test] +fn select() { + let file_contents = read_to_string("examples/select.ds").unwrap(); + + evaluate(&file_contents).unwrap(); +} + #[test] fn table() { let file_contents = read_to_string("examples/table.ds").unwrap(); diff --git a/tree-sitter-dust/corpus/async.txt b/tree-sitter-dust/corpus/async.txt deleted file mode 100644 index 0ff3fe3..0000000 --- a/tree-sitter-dust/corpus/async.txt +++ /dev/null @@ -1,75 +0,0 @@ -================== -Simple Async Statements -================== - -async { (output 'Whaddup') } - ---- - -(root - (block - (statement - (async - (block - (statement - (expression - (function_call - (built_in_function - (expression - (value - (string)))))))))))) - -================== -Complex Async Statements -================== - -async { - if 1 % 2 == 0 { - true - } else { - false - } - - 'foobar' -} - ---- - -(root - (block - (statement - (async - (block - (statement - (if_else - (if - (expression - (logic - (expression - (math - (expression - (value - (integer))) - (math_operator) - (expression - (value - (integer))))) - (logic_operator) - (expression - (value - (integer))))) - (block - (statement - (expression - (value - (boolean)))))) - (else - (block - (statement - (expression - (value - (boolean)))))))) - (statement - (expression - (value - (string))))))))) diff --git a/tree-sitter-dust/corpus/futures.txt b/tree-sitter-dust/corpus/futures.txt new file mode 100644 index 0000000..1334012 --- /dev/null +++ b/tree-sitter-dust/corpus/futures.txt @@ -0,0 +1,79 @@ +================================================================================ +Simple Async Statements +================================================================================ + +async { (output 'Whaddup') } + +-------------------------------------------------------------------------------- + +(root + (block + (statement + (expression + (value + (future + (block + (statement + (expression + (function_call + (built_in_function + (expression + (value + (string)))))))))))))) + +================================================================================ +Complex Async Statements +================================================================================ + +async { + if 1 % 2 == 0 { + true + } else { + false + } + + 'foobar' +} + +-------------------------------------------------------------------------------- + +(root + (block + (statement + (expression + (value + (future + (block + (statement + (if_else + (if + (expression + (logic + (expression + (math + (expression + (value + (integer))) + (math_operator) + (expression + (value + (integer))))) + (logic_operator) + (expression + (value + (integer))))) + (block + (statement + (expression + (value + (boolean)))))) + (else + (block + (statement + (expression + (value + (boolean)))))))) + (statement + (expression + (value + (string))))))))))) diff --git a/tree-sitter-dust/grammar.js b/tree-sitter-dust/grammar.js index 75616b6..d0b67bb 100644 --- a/tree-sitter-dust/grammar.js +++ b/tree-sitter-dust/grammar.js @@ -11,19 +11,18 @@ module.exports = grammar({ ], rules: { - root: $ => repeat1($.block), + root: $ => $.block, comment: $ => /[#][^#\n]*[#|\n]/, - block: $ => choice( + block: $ => prec.right(choice( repeat1($.statement), seq('{', repeat1($.statement), '}'), - ), + )), statement: $ => prec.right(seq( choice( $.assignment, - $.async, $.expression, $.filter, $.find, @@ -67,6 +66,7 @@ module.exports = grammar({ $.function, $.table, $.map, + $.future, ), integer: $ => token(prec.left(seq( @@ -92,7 +92,7 @@ module.exports = grammar({ list: $ => seq( '[', - repeat(prec.left(seq($.expression, optional(',')))), + $._expression_list, ']', ), @@ -106,6 +106,11 @@ module.exports = grammar({ )), '}', ), + + future: $ => seq( + 'async', + $.block, + ), index: $ => prec.left(seq( $.expression, @@ -265,11 +270,6 @@ module.exports = grammar({ $.expression, )), - async: $ => seq( - 'async', - $.block, - ), - identifier_list: $ => prec.right(choice( seq( '|', diff --git a/tree-sitter-dust/src/grammar.json b/tree-sitter-dust/src/grammar.json index c19f3f1..ee106c3 100644 --- a/tree-sitter-dust/src/grammar.json +++ b/tree-sitter-dust/src/grammar.json @@ -3,47 +3,48 @@ "word": "identifier", "rules": { "root": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "block" - } + "type": "SYMBOL", + "name": "block" }, "comment": { "type": "PATTERN", "value": "[#][^#\\n]*[#|\\n]" }, "block": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "statement" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "statement" - } - }, - { - "type": "STRING", - "value": "}" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "statement" } - ] - } - ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + } }, "statement": { "type": "PREC_RIGHT", @@ -58,10 +59,6 @@ "type": "SYMBOL", "name": "assignment" }, - { - "type": "SYMBOL", - "name": "async" - }, { "type": "SYMBOL", "name": "expression" @@ -256,6 +253,10 @@ { "type": "SYMBOL", "name": "map" + }, + { + "type": "SYMBOL", + "name": "future" } ] }, @@ -480,32 +481,8 @@ "value": "[" }, { - "type": "REPEAT", - "content": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - } + "type": "SYMBOL", + "name": "_expression_list" }, { "type": "STRING", @@ -558,6 +535,19 @@ } ] }, + "future": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + }, "index": { "type": "PREC_LEFT", "value": 0, @@ -1119,19 +1109,6 @@ ] } }, - "async": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "async" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, "identifier_list": { "type": "PREC_RIGHT", "value": 0, diff --git a/tree-sitter-dust/src/node-types.json b/tree-sitter-dust/src/node-types.json index 4211892..55be244 100644 --- a/tree-sitter-dust/src/node-types.json +++ b/tree-sitter-dust/src/node-types.json @@ -27,21 +27,6 @@ "named": true, "fields": {} }, - { - "type": "async", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, { "type": "block", "named": true, @@ -287,6 +272,21 @@ ] } }, + { + "type": "future", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, { "type": "identifier_list", "named": true, @@ -384,7 +384,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "expression", @@ -530,7 +530,7 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -575,10 +575,6 @@ "type": "assignment", "named": true }, - { - "type": "async", - "named": true - }, { "type": "expression", "named": true @@ -692,6 +688,10 @@ "type": "function", "named": true }, + { + "type": "future", + "named": true + }, { "type": "integer", "named": true diff --git a/tree-sitter-dust/src/parser.c b/tree-sitter-dust/src/parser.c index 8713f58..5628cb5 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 1255 -#define LARGE_STATE_COUNT 555 -#define SYMBOL_COUNT 131 +#define STATE_COUNT 1137 +#define LARGE_STATE_COUNT 492 +#define SYMBOL_COUNT 129 #define ALIAS_COUNT 0 #define TOKEN_COUNT 85 #define EXTERNAL_TOKEN_COUNT 0 @@ -33,42 +33,42 @@ enum { anon_sym_LBRACK = 14, anon_sym_RBRACK = 15, anon_sym_EQ = 16, - anon_sym_COLON = 17, - anon_sym_DOT_DOT = 18, - anon_sym_PLUS = 19, - anon_sym_DASH = 20, - anon_sym_STAR = 21, - anon_sym_SLASH = 22, - anon_sym_PERCENT = 23, - anon_sym_EQ_EQ = 24, - anon_sym_BANG_EQ = 25, - anon_sym_AMP_AMP = 26, - anon_sym_PIPE_PIPE = 27, - anon_sym_GT = 28, - anon_sym_LT = 29, - anon_sym_GT_EQ = 30, - anon_sym_LT_EQ = 31, - anon_sym_PLUS_EQ = 32, - anon_sym_DASH_EQ = 33, - anon_sym_if = 34, - anon_sym_elseif = 35, - anon_sym_else = 36, - anon_sym_match = 37, - anon_sym_EQ_GT = 38, - anon_sym_while = 39, - anon_sym_for = 40, - anon_sym_in = 41, - anon_sym_transform = 42, - anon_sym_filter = 43, - anon_sym_find = 44, - anon_sym_remove = 45, - anon_sym_from = 46, - anon_sym_reduce = 47, - anon_sym_to = 48, - anon_sym_select = 49, - anon_sym_insert = 50, - anon_sym_into = 51, - anon_sym_async = 52, + anon_sym_async = 17, + anon_sym_COLON = 18, + anon_sym_DOT_DOT = 19, + anon_sym_PLUS = 20, + anon_sym_DASH = 21, + anon_sym_STAR = 22, + anon_sym_SLASH = 23, + anon_sym_PERCENT = 24, + anon_sym_EQ_EQ = 25, + anon_sym_BANG_EQ = 26, + anon_sym_AMP_AMP = 27, + anon_sym_PIPE_PIPE = 28, + anon_sym_GT = 29, + anon_sym_LT = 30, + anon_sym_GT_EQ = 31, + anon_sym_LT_EQ = 32, + anon_sym_PLUS_EQ = 33, + anon_sym_DASH_EQ = 34, + anon_sym_if = 35, + anon_sym_elseif = 36, + anon_sym_else = 37, + anon_sym_match = 38, + anon_sym_EQ_GT = 39, + anon_sym_while = 40, + anon_sym_for = 41, + anon_sym_in = 42, + anon_sym_transform = 43, + anon_sym_filter = 44, + anon_sym_find = 45, + anon_sym_remove = 46, + anon_sym_from = 47, + anon_sym_reduce = 48, + anon_sym_to = 49, + anon_sym_select = 50, + anon_sym_insert = 51, + anon_sym_into = 52, anon_sym_PIPE = 53, anon_sym_table = 54, anon_sym_assert = 55, @@ -111,28 +111,28 @@ enum { sym_boolean = 92, sym_list = 93, sym_map = 94, - sym_index = 95, - sym_math = 96, - sym_math_operator = 97, - sym_logic = 98, - sym_logic_operator = 99, - sym_assignment = 100, - sym_assignment_operator = 101, - sym_if_else = 102, - sym_if = 103, - sym_else_if = 104, - sym_else = 105, - sym_match = 106, - sym_while = 107, - sym_for = 108, - sym_transform = 109, - sym_filter = 110, - sym_find = 111, - sym_remove = 112, - sym_reduce = 113, - sym_select = 114, - sym_insert = 115, - sym_async = 116, + sym_future = 95, + sym_index = 96, + sym_math = 97, + sym_math_operator = 98, + sym_logic = 99, + sym_logic_operator = 100, + sym_assignment = 101, + sym_assignment_operator = 102, + sym_if_else = 103, + sym_if = 104, + sym_else_if = 105, + sym_else = 106, + sym_match = 107, + sym_while = 108, + sym_for = 109, + sym_transform = 110, + sym_filter = 111, + sym_find = 112, + sym_remove = 113, + sym_reduce = 114, + sym_select = 115, + sym_insert = 116, sym_identifier_list = 117, sym_table = 118, sym_function = 119, @@ -140,13 +140,11 @@ enum { sym__context_defined_function = 121, sym_built_in_function = 122, sym__built_in_function_name = 123, - aux_sym_root_repeat1 = 124, - aux_sym_block_repeat1 = 125, - aux_sym_list_repeat1 = 126, - aux_sym_map_repeat1 = 127, - aux_sym_if_else_repeat1 = 128, - aux_sym_match_repeat1 = 129, - aux_sym_identifier_list_repeat1 = 130, + aux_sym_block_repeat1 = 124, + aux_sym_map_repeat1 = 125, + aux_sym_if_else_repeat1 = 126, + aux_sym_match_repeat1 = 127, + aux_sym_identifier_list_repeat1 = 128, }; static const char * const ts_symbol_names[] = { @@ -167,6 +165,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_EQ] = "=", + [anon_sym_async] = "async", [anon_sym_COLON] = ":", [anon_sym_DOT_DOT] = "..", [anon_sym_PLUS] = "+", @@ -202,7 +201,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_select] = "select", [anon_sym_insert] = "insert", [anon_sym_into] = "into", - [anon_sym_async] = "async", [anon_sym_PIPE] = "|", [anon_sym_table] = "table", [anon_sym_assert] = "assert", @@ -245,6 +243,7 @@ static const char * const ts_symbol_names[] = { [sym_boolean] = "boolean", [sym_list] = "list", [sym_map] = "map", + [sym_future] = "future", [sym_index] = "index", [sym_math] = "math", [sym_math_operator] = "math_operator", @@ -266,7 +265,6 @@ static const char * const ts_symbol_names[] = { [sym_reduce] = "reduce", [sym_select] = "select", [sym_insert] = "insert", - [sym_async] = "async", [sym_identifier_list] = "identifier_list", [sym_table] = "table", [sym_function] = "function", @@ -274,9 +272,7 @@ static const char * const ts_symbol_names[] = { [sym__context_defined_function] = "_context_defined_function", [sym_built_in_function] = "built_in_function", [sym__built_in_function_name] = "_built_in_function_name", - [aux_sym_root_repeat1] = "root_repeat1", [aux_sym_block_repeat1] = "block_repeat1", - [aux_sym_list_repeat1] = "list_repeat1", [aux_sym_map_repeat1] = "map_repeat1", [aux_sym_if_else_repeat1] = "if_else_repeat1", [aux_sym_match_repeat1] = "match_repeat1", @@ -301,6 +297,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_async] = anon_sym_async, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_PLUS] = anon_sym_PLUS, @@ -336,7 +333,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_select] = anon_sym_select, [anon_sym_insert] = anon_sym_insert, [anon_sym_into] = anon_sym_into, - [anon_sym_async] = anon_sym_async, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_table] = anon_sym_table, [anon_sym_assert] = anon_sym_assert, @@ -379,6 +375,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_boolean] = sym_boolean, [sym_list] = sym_list, [sym_map] = sym_map, + [sym_future] = sym_future, [sym_index] = sym_index, [sym_math] = sym_math, [sym_math_operator] = sym_math_operator, @@ -400,7 +397,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_reduce] = sym_reduce, [sym_select] = sym_select, [sym_insert] = sym_insert, - [sym_async] = sym_async, [sym_identifier_list] = sym_identifier_list, [sym_table] = sym_table, [sym_function] = sym_function, @@ -408,9 +404,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__context_defined_function] = sym__context_defined_function, [sym_built_in_function] = sym_built_in_function, [sym__built_in_function_name] = sym__built_in_function_name, - [aux_sym_root_repeat1] = aux_sym_root_repeat1, [aux_sym_block_repeat1] = aux_sym_block_repeat1, - [aux_sym_list_repeat1] = aux_sym_list_repeat1, [aux_sym_map_repeat1] = aux_sym_map_repeat1, [aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1, [aux_sym_match_repeat1] = aux_sym_match_repeat1, @@ -486,6 +480,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -626,10 +624,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_async] = { - .visible = true, - .named = false, - }, [anon_sym_PIPE] = { .visible = true, .named = false, @@ -798,6 +792,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_future] = { + .visible = true, + .named = true, + }, [sym_index] = { .visible = true, .named = true, @@ -882,10 +880,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_async] = { - .visible = true, - .named = true, - }, [sym_identifier_list] = { .visible = true, .named = true, @@ -914,18 +908,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym_root_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_block_repeat1] = { .visible = false, .named = false, }, - [aux_sym_list_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_map_repeat1] = { .visible = false, .named = false, @@ -1004,1253 +990,1135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 6, [7] = 2, - [8] = 8, - [9] = 2, - [10] = 2, + [8] = 2, + [9] = 9, + [10] = 6, [11] = 2, [12] = 2, - [13] = 6, - [14] = 8, - [15] = 8, - [16] = 8, - [17] = 6, - [18] = 6, - [19] = 2, - [20] = 2, - [21] = 8, + [13] = 2, + [14] = 9, + [15] = 6, + [16] = 9, + [17] = 2, + [18] = 9, + [19] = 6, + [20] = 6, + [21] = 2, [22] = 2, - [23] = 6, - [24] = 8, - [25] = 6, - [26] = 2, - [27] = 8, - [28] = 8, - [29] = 8, - [30] = 6, - [31] = 8, - [32] = 8, - [33] = 6, + [23] = 9, + [24] = 9, + [25] = 2, + [26] = 6, + [27] = 6, + [28] = 9, + [29] = 6, + [30] = 9, + [31] = 31, + [32] = 32, + [33] = 31, [34] = 34, [35] = 35, [36] = 36, - [37] = 37, + [37] = 35, [38] = 38, - [39] = 39, - [40] = 40, - [41] = 36, + [39] = 34, + [40] = 36, + [41] = 41, [42] = 42, - [43] = 34, - [44] = 35, + [43] = 43, + [44] = 32, [45] = 45, - [46] = 34, - [47] = 47, - [48] = 37, - [49] = 38, - [50] = 39, - [51] = 36, - [52] = 40, - [53] = 42, - [54] = 40, - [55] = 42, - [56] = 42, - [57] = 40, - [58] = 36, - [59] = 45, - [60] = 36, - [61] = 34, - [62] = 40, - [63] = 47, - [64] = 37, - [65] = 35, - [66] = 38, - [67] = 39, - [68] = 39, - [69] = 45, - [70] = 34, - [71] = 47, - [72] = 38, - [73] = 37, - [74] = 37, + [46] = 38, + [47] = 31, + [48] = 35, + [49] = 31, + [50] = 36, + [51] = 34, + [52] = 45, + [53] = 41, + [54] = 34, + [55] = 31, + [56] = 32, + [57] = 45, + [58] = 43, + [59] = 35, + [60] = 42, + [61] = 38, + [62] = 36, + [63] = 35, + [64] = 42, + [65] = 32, + [66] = 35, + [67] = 43, + [68] = 45, + [69] = 34, + [70] = 31, + [71] = 45, + [72] = 43, + [73] = 31, + [74] = 34, [75] = 38, - [76] = 47, - [77] = 34, - [78] = 39, - [79] = 36, + [76] = 42, + [77] = 43, + [78] = 42, + [79] = 43, [80] = 42, - [81] = 38, - [82] = 40, - [83] = 39, - [84] = 45, - [85] = 37, - [86] = 47, - [87] = 40, - [88] = 34, - [89] = 36, - [90] = 35, - [91] = 42, - [92] = 40, - [93] = 34, - [94] = 47, - [95] = 37, - [96] = 38, - [97] = 39, - [98] = 39, - [99] = 36, - [100] = 8, - [101] = 45, + [81] = 45, + [82] = 38, + [83] = 36, + [84] = 31, + [85] = 36, + [86] = 38, + [87] = 38, + [88] = 42, + [89] = 43, + [90] = 45, + [91] = 31, + [92] = 34, + [93] = 35, + [94] = 34, + [95] = 34, + [96] = 31, + [97] = 45, + [98] = 35, + [99] = 45, + [100] = 36, + [101] = 38, [102] = 42, - [103] = 38, - [104] = 40, - [105] = 35, - [106] = 42, + [103] = 43, + [104] = 35, + [105] = 43, + [106] = 35, [107] = 36, - [108] = 34, - [109] = 47, - [110] = 37, - [111] = 45, - [112] = 38, - [113] = 35, - [114] = 40, - [115] = 39, - [116] = 36, - [117] = 45, - [118] = 40, - [119] = 42, - [120] = 35, - [121] = 47, - [122] = 47, - [123] = 37, - [124] = 34, - [125] = 38, - [126] = 39, - [127] = 47, + [108] = 41, + [109] = 45, + [110] = 36, + [111] = 38, + [112] = 42, + [113] = 34, + [114] = 36, + [115] = 42, + [116] = 34, + [117] = 31, + [118] = 45, + [119] = 38, + [120] = 43, + [121] = 42, + [122] = 35, + [123] = 32, + [124] = 43, + [125] = 41, + [126] = 32, + [127] = 43, [128] = 42, - [129] = 37, - [130] = 38, - [131] = 39, - [132] = 34, - [133] = 36, - [134] = 39, - [135] = 42, - [136] = 40, - [137] = 36, - [138] = 40, - [139] = 42, + [129] = 43, + [130] = 42, + [131] = 35, + [132] = 38, + [133] = 45, + [134] = 38, + [135] = 41, + [136] = 38, + [137] = 45, + [138] = 31, + [139] = 36, [140] = 36, - [141] = 47, - [142] = 39, - [143] = 38, - [144] = 42, - [145] = 37, - [146] = 38, - [147] = 47, - [148] = 34, - [149] = 34, - [150] = 37, - [151] = 47, - [152] = 37, - [153] = 8, - [154] = 8, - [155] = 8, - [156] = 8, - [157] = 8, - [158] = 8, - [159] = 8, - [160] = 8, - [161] = 161, - [162] = 161, - [163] = 161, - [164] = 161, - [165] = 161, - [166] = 161, - [167] = 167, - [168] = 168, - [169] = 161, - [170] = 170, - [171] = 171, - [172] = 161, - [173] = 161, - [174] = 174, - [175] = 175, - [176] = 167, - [177] = 174, - [178] = 161, - [179] = 175, - [180] = 170, - [181] = 171, - [182] = 168, - [183] = 174, - [184] = 168, - [185] = 170, - [186] = 175, - [187] = 170, - [188] = 171, - [189] = 161, - [190] = 174, - [191] = 167, - [192] = 171, - [193] = 161, - [194] = 175, - [195] = 168, - [196] = 167, - [197] = 171, - [198] = 174, - [199] = 6, - [200] = 175, - [201] = 168, - [202] = 8, - [203] = 167, - [204] = 175, - [205] = 8, - [206] = 171, - [207] = 170, - [208] = 167, - [209] = 6, - [210] = 210, - [211] = 170, - [212] = 174, - [213] = 8, - [214] = 168, - [215] = 171, - [216] = 168, - [217] = 175, - [218] = 170, - [219] = 174, - [220] = 167, - [221] = 168, - [222] = 170, - [223] = 174, + [141] = 34, + [142] = 35, + [143] = 31, + [144] = 34, + [145] = 41, + [146] = 36, + [147] = 147, + [148] = 147, + [149] = 147, + [150] = 147, + [151] = 147, + [152] = 147, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 147, + [159] = 147, + [160] = 160, + [161] = 147, + [162] = 157, + [163] = 155, + [164] = 154, + [165] = 156, + [166] = 153, + [167] = 147, + [168] = 160, + [169] = 156, + [170] = 153, + [171] = 147, + [172] = 160, + [173] = 154, + [174] = 157, + [175] = 156, + [176] = 155, + [177] = 160, + [178] = 147, + [179] = 154, + [180] = 155, + [181] = 157, + [182] = 153, + [183] = 183, + [184] = 155, + [185] = 157, + [186] = 155, + [187] = 153, + [188] = 154, + [189] = 160, + [190] = 154, + [191] = 160, + [192] = 153, + [193] = 157, + [194] = 156, + [195] = 156, + [196] = 6, + [197] = 154, + [198] = 160, + [199] = 9, + [200] = 157, + [201] = 155, + [202] = 9, + [203] = 156, + [204] = 6, + [205] = 153, + [206] = 154, + [207] = 156, + [208] = 157, + [209] = 160, + [210] = 155, + [211] = 153, + [212] = 6, + [213] = 6, + [214] = 9, + [215] = 9, + [216] = 216, + [217] = 216, + [218] = 216, + [219] = 216, + [220] = 216, + [221] = 221, + [222] = 222, + [223] = 222, [224] = 224, - [225] = 6, - [226] = 8, + [225] = 225, + [226] = 226, [227] = 227, - [228] = 6, - [229] = 8, - [230] = 171, - [231] = 175, - [232] = 8, - [233] = 167, - [234] = 8, - [235] = 235, - [236] = 235, - [237] = 235, - [238] = 235, - [239] = 235, - [240] = 240, - [241] = 240, - [242] = 240, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 243, - [249] = 247, - [250] = 245, - [251] = 245, - [252] = 245, - [253] = 246, - [254] = 246, - [255] = 245, - [256] = 245, - [257] = 246, - [258] = 244, - [259] = 243, - [260] = 247, - [261] = 247, - [262] = 246, - [263] = 240, - [264] = 243, - [265] = 247, - [266] = 243, - [267] = 240, - [268] = 243, - [269] = 240, - [270] = 247, - [271] = 240, - [272] = 244, - [273] = 245, - [274] = 246, - [275] = 240, - [276] = 245, - [277] = 246, - [278] = 243, - [279] = 243, - [280] = 247, - [281] = 240, - [282] = 246, - [283] = 243, - [284] = 240, - [285] = 247, - [286] = 245, - [287] = 247, - [288] = 246, - [289] = 243, - [290] = 246, - [291] = 243, - [292] = 247, - [293] = 245, - [294] = 240, - [295] = 246, - [296] = 240, - [297] = 246, - [298] = 240, - [299] = 246, - [300] = 240, - [301] = 246, - [302] = 240, - [303] = 247, - [304] = 246, - [305] = 240, - [306] = 240, - [307] = 243, - [308] = 247, - [309] = 247, - [310] = 245, - [311] = 244, - [312] = 245, - [313] = 246, - [314] = 240, - [315] = 246, - [316] = 246, - [317] = 243, - [318] = 240, - [319] = 244, - [320] = 245, - [321] = 246, - [322] = 240, - [323] = 246, - [324] = 324, - [325] = 325, - [326] = 325, - [327] = 325, - [328] = 325, - [329] = 325, - [330] = 325, - [331] = 325, - [332] = 325, - [333] = 325, - [334] = 325, - [335] = 325, - [336] = 325, - [337] = 325, - [338] = 338, + [228] = 221, + [229] = 227, + [230] = 221, + [231] = 225, + [232] = 224, + [233] = 226, + [234] = 224, + [235] = 225, + [236] = 225, + [237] = 222, + [238] = 224, + [239] = 222, + [240] = 226, + [241] = 227, + [242] = 221, + [243] = 226, + [244] = 221, + [245] = 227, + [246] = 224, + [247] = 222, + [248] = 225, + [249] = 224, + [250] = 222, + [251] = 225, + [252] = 221, + [253] = 227, + [254] = 222, + [255] = 224, + [256] = 225, + [257] = 222, + [258] = 224, + [259] = 221, + [260] = 227, + [261] = 225, + [262] = 224, + [263] = 227, + [264] = 222, + [265] = 221, + [266] = 227, + [267] = 221, + [268] = 225, + [269] = 227, + [270] = 225, + [271] = 224, + [272] = 227, + [273] = 222, + [274] = 225, + [275] = 221, + [276] = 227, + [277] = 225, + [278] = 226, + [279] = 224, + [280] = 221, + [281] = 227, + [282] = 221, + [283] = 222, + [284] = 222, + [285] = 224, + [286] = 224, + [287] = 287, + [288] = 288, + [289] = 288, + [290] = 288, + [291] = 288, + [292] = 288, + [293] = 288, + [294] = 288, + [295] = 288, + [296] = 288, + [297] = 288, + [298] = 288, + [299] = 288, + [300] = 288, + [301] = 301, + [302] = 147, + [303] = 303, + [304] = 304, + [305] = 303, + [306] = 304, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 304, + [311] = 304, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 308, + [316] = 316, + [317] = 303, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 303, + [322] = 303, + [323] = 316, + [324] = 313, + [325] = 314, + [326] = 304, + [327] = 314, + [328] = 319, + [329] = 312, + [330] = 304, + [331] = 309, + [332] = 307, + [333] = 303, + [334] = 318, + [335] = 320, + [336] = 313, + [337] = 337, + [338] = 320, [339] = 339, - [340] = 161, - [341] = 339, + [340] = 155, + [341] = 341, [342] = 342, - [343] = 342, - [344] = 174, - [345] = 342, + [343] = 343, + [344] = 344, + [345] = 303, [346] = 346, - [347] = 339, - [348] = 175, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 168, - [353] = 353, - [354] = 342, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 346, - [359] = 167, - [360] = 360, - [361] = 339, - [362] = 174, - [363] = 349, - [364] = 168, - [365] = 356, - [366] = 357, - [367] = 355, - [368] = 353, - [369] = 353, - [370] = 351, - [371] = 175, - [372] = 342, - [373] = 350, - [374] = 339, + [347] = 347, + [348] = 320, + [349] = 307, + [350] = 342, + [351] = 304, + [352] = 314, + [353] = 313, + [354] = 316, + [355] = 342, + [356] = 319, + [357] = 303, + [358] = 342, + [359] = 342, + [360] = 309, + [361] = 342, + [362] = 308, + [363] = 319, + [364] = 364, + [365] = 318, + [366] = 366, + [367] = 304, + [368] = 368, + [369] = 316, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 307, + [374] = 342, [375] = 342, - [376] = 167, - [377] = 360, - [378] = 339, - [379] = 342, + [376] = 312, + [377] = 342, + [378] = 378, + [379] = 379, [380] = 380, - [381] = 350, - [382] = 351, - [383] = 349, + [381] = 308, + [382] = 382, + [383] = 318, [384] = 384, - [385] = 346, + [385] = 314, [386] = 386, [387] = 387, [388] = 388, - [389] = 389, - [390] = 390, - [391] = 357, + [389] = 342, + [390] = 155, + [391] = 391, [392] = 392, - [393] = 393, - [394] = 346, - [395] = 353, + [393] = 342, + [394] = 154, + [395] = 395, [396] = 396, - [397] = 350, - [398] = 351, - [399] = 342, - [400] = 400, - [401] = 339, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 154, + [401] = 308, [402] = 402, - [403] = 403, + [403] = 308, [404] = 404, - [405] = 405, + [405] = 342, [406] = 406, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 355, - [413] = 356, - [414] = 353, - [415] = 415, - [416] = 416, - [417] = 360, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 339, - [422] = 346, - [423] = 423, - [424] = 360, - [425] = 349, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 355, - [432] = 356, - [433] = 433, - [434] = 346, - [435] = 350, - [436] = 356, - [437] = 170, - [438] = 384, - [439] = 351, - [440] = 171, - [441] = 349, - [442] = 357, - [443] = 353, - [444] = 353, - [445] = 171, - [446] = 351, - [447] = 170, - [448] = 360, - [449] = 356, - [450] = 355, - [451] = 360, - [452] = 350, - [453] = 349, - [454] = 355, - [455] = 419, - [456] = 346, - [457] = 386, - [458] = 387, - [459] = 388, - [460] = 389, - [461] = 390, - [462] = 168, - [463] = 392, - [464] = 464, - [465] = 393, - [466] = 409, - [467] = 396, - [468] = 464, - [469] = 404, - [470] = 400, - [471] = 464, - [472] = 405, - [473] = 410, - [474] = 411, - [475] = 408, - [476] = 428, - [477] = 416, - [478] = 464, - [479] = 353, - [480] = 415, - [481] = 407, - [482] = 433, - [483] = 464, - [484] = 380, - [485] = 464, - [486] = 430, - [487] = 464, - [488] = 360, - [489] = 427, - [490] = 464, - [491] = 402, - [492] = 167, - [493] = 429, - [494] = 174, - [495] = 423, - [496] = 464, - [497] = 464, - [498] = 464, - [499] = 349, - [500] = 426, - [501] = 175, - [502] = 418, - [503] = 464, - [504] = 346, - [505] = 355, - [506] = 420, - [507] = 356, - [508] = 384, - [509] = 464, - [510] = 351, - [511] = 360, - [512] = 360, - [513] = 350, - [514] = 350, + [408] = 407, + [409] = 312, + [410] = 407, + [411] = 314, + [412] = 407, + [413] = 314, + [414] = 313, + [415] = 407, + [416] = 307, + [417] = 407, + [418] = 316, + [419] = 316, + [420] = 320, + [421] = 407, + [422] = 319, + [423] = 407, + [424] = 309, + [425] = 407, + [426] = 313, + [427] = 407, + [428] = 312, + [429] = 312, + [430] = 307, + [431] = 407, + [432] = 318, + [433] = 407, + [434] = 320, + [435] = 318, + [436] = 319, + [437] = 407, + [438] = 307, + [439] = 382, + [440] = 154, + [441] = 379, + [442] = 378, + [443] = 386, + [444] = 339, + [445] = 395, + [446] = 391, + [447] = 316, + [448] = 372, + [449] = 155, + [450] = 337, + [451] = 154, + [452] = 402, + [453] = 308, + [454] = 318, + [455] = 371, + [456] = 368, + [457] = 155, + [458] = 319, + [459] = 320, + [460] = 370, + [461] = 388, + [462] = 312, + [463] = 314, + [464] = 387, + [465] = 392, + [466] = 364, + [467] = 347, + [468] = 384, + [469] = 313, + [470] = 346, + [471] = 343, + [472] = 308, + [473] = 366, + [474] = 396, + [475] = 341, + [476] = 318, + [477] = 398, + [478] = 399, + [479] = 318, + [480] = 380, + [481] = 312, + [482] = 406, + [483] = 404, + [484] = 313, + [485] = 307, + [486] = 316, + [487] = 320, + [488] = 319, + [489] = 318, + [490] = 318, + [491] = 318, + [492] = 303, + [493] = 303, + [494] = 157, + [495] = 304, + [496] = 304, + [497] = 304, + [498] = 498, + [499] = 498, + [500] = 303, + [501] = 498, + [502] = 304, + [503] = 303, + [504] = 504, + [505] = 504, + [506] = 309, + [507] = 314, + [508] = 309, + [509] = 504, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 510, + [514] = 514, [515] = 515, - [516] = 171, - [517] = 170, - [518] = 515, - [519] = 171, + [516] = 516, + [517] = 515, + [518] = 518, + [519] = 515, [520] = 515, - [521] = 360, - [522] = 515, + [521] = 521, + [522] = 522, [523] = 515, - [524] = 175, - [525] = 174, - [526] = 515, - [527] = 515, - [528] = 356, - [529] = 384, + [524] = 518, + [525] = 515, + [526] = 526, + [527] = 527, + [528] = 518, + [529] = 529, [530] = 515, - [531] = 515, - [532] = 515, - [533] = 351, - [534] = 515, - [535] = 349, - [536] = 167, - [537] = 170, - [538] = 168, - [539] = 355, - [540] = 515, - [541] = 384, - [542] = 515, - [543] = 384, - [544] = 360, - [545] = 360, - [546] = 384, - [547] = 384, - [548] = 356, - [549] = 346, - [550] = 350, - [551] = 355, - [552] = 351, - [553] = 353, - [554] = 346, - [555] = 350, - [556] = 355, - [557] = 351, - [558] = 356, - [559] = 353, - [560] = 342, - [561] = 342, - [562] = 339, - [563] = 342, - [564] = 339, - [565] = 170, - [566] = 339, - [567] = 342, - [568] = 339, - [569] = 171, - [570] = 357, - [571] = 353, - [572] = 357, - [573] = 353, - [574] = 428, - [575] = 390, - [576] = 392, - [577] = 387, - [578] = 393, - [579] = 406, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 433, - [584] = 404, - [585] = 580, - [586] = 423, - [587] = 430, - [588] = 386, - [589] = 429, - [590] = 427, - [591] = 405, - [592] = 580, - [593] = 403, - [594] = 416, - [595] = 389, - [596] = 596, - [597] = 388, - [598] = 396, - [599] = 582, - [600] = 582, - [601] = 400, - [602] = 346, - [603] = 350, - [604] = 346, - [605] = 356, - [606] = 355, - [607] = 351, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 609, - [622] = 616, - [623] = 623, - [624] = 617, - [625] = 620, - [626] = 610, - [627] = 616, - [628] = 611, - [629] = 629, - [630] = 619, - [631] = 609, - [632] = 632, - [633] = 633, - [634] = 629, - [635] = 617, - [636] = 610, - [637] = 611, - [638] = 612, - [639] = 613, - [640] = 640, - [641] = 609, - [642] = 632, - [643] = 608, - [644] = 612, - [645] = 619, - [646] = 618, - [647] = 609, - [648] = 633, - [649] = 617, - [650] = 650, - [651] = 616, - [652] = 629, - [653] = 611, - [654] = 609, - [655] = 650, - [656] = 623, - [657] = 609, - [658] = 623, - [659] = 619, - [660] = 623, - [661] = 650, - [662] = 619, - [663] = 614, - [664] = 650, - [665] = 615, - [666] = 629, - [667] = 615, - [668] = 609, - [669] = 629, - [670] = 609, - [671] = 632, - [672] = 608, - [673] = 612, - [674] = 617, - [675] = 610, - [676] = 611, - [677] = 612, - [678] = 613, - [679] = 614, - [680] = 609, - [681] = 608, - [682] = 615, - [683] = 608, - [684] = 608, - [685] = 618, - [686] = 396, - [687] = 393, - [688] = 629, - [689] = 392, - [690] = 616, - [691] = 616, - [692] = 390, - [693] = 609, - [694] = 389, - [695] = 388, - [696] = 387, - [697] = 386, - [698] = 427, - [699] = 613, - [700] = 623, - [701] = 620, - [702] = 650, - [703] = 633, - [704] = 618, - [705] = 640, - [706] = 616, - [707] = 620, - [708] = 708, - [709] = 619, - [710] = 614, - [711] = 615, - [712] = 404, - [713] = 629, - [714] = 618, - [715] = 620, - [716] = 632, - [717] = 613, - [718] = 400, - [719] = 612, - [720] = 611, - [721] = 610, - [722] = 610, - [723] = 617, - [724] = 610, - [725] = 650, - [726] = 623, - [727] = 609, - [728] = 619, - [729] = 611, - [730] = 632, - [731] = 612, - [732] = 619, - [733] = 623, - [734] = 650, - [735] = 640, - [736] = 623, - [737] = 629, - [738] = 650, - [739] = 615, - [740] = 613, - [741] = 617, - [742] = 610, - [743] = 611, - [744] = 633, - [745] = 612, - [746] = 613, - [747] = 632, - [748] = 633, - [749] = 617, - [750] = 632, - [751] = 619, - [752] = 618, - [753] = 618, - [754] = 613, - [755] = 616, - [756] = 616, - [757] = 612, - [758] = 620, - [759] = 609, - [760] = 611, - [761] = 610, - [762] = 609, - [763] = 619, - [764] = 623, - [765] = 650, - [766] = 617, - [767] = 405, - [768] = 614, - [769] = 632, - [770] = 633, - [771] = 608, - [772] = 609, - [773] = 623, - [774] = 650, - [775] = 608, - [776] = 615, - [777] = 428, - [778] = 619, - [779] = 623, - [780] = 650, - [781] = 618, - [782] = 708, - [783] = 612, - [784] = 613, - [785] = 629, - [786] = 620, - [787] = 416, - [788] = 619, - [789] = 623, - [790] = 650, - [791] = 350, - [792] = 616, - [793] = 423, - [794] = 640, - [795] = 620, - [796] = 619, - [797] = 623, - [798] = 650, - [799] = 650, - [800] = 623, - [801] = 618, - [802] = 609, - [803] = 433, - [804] = 619, - [805] = 616, - [806] = 618, - [807] = 632, - [808] = 430, - [809] = 355, - [810] = 613, - [811] = 612, - [812] = 619, - [813] = 609, - [814] = 623, - [815] = 650, - [816] = 351, - [817] = 615, - [818] = 356, - [819] = 632, - [820] = 633, - [821] = 613, - [822] = 612, - [823] = 611, - [824] = 618, - [825] = 620, - [826] = 610, - [827] = 617, - [828] = 619, - [829] = 650, - [830] = 623, - [831] = 609, - [832] = 619, - [833] = 640, - [834] = 617, - [835] = 608, - [836] = 615, - [837] = 632, - [838] = 633, - [839] = 611, - [840] = 610, - [841] = 619, - [842] = 623, - [843] = 650, - [844] = 619, - [845] = 623, - [846] = 650, - [847] = 608, - [848] = 633, - [849] = 609, - [850] = 623, - [851] = 650, - [852] = 608, - [853] = 610, - [854] = 619, - [855] = 623, - [856] = 650, - [857] = 611, - [858] = 614, - [859] = 613, - [860] = 618, - [861] = 429, - [862] = 708, - [863] = 629, - [864] = 614, - [865] = 615, - [866] = 629, - [867] = 620, - [868] = 629, - [869] = 616, - [870] = 615, - [871] = 629, - [872] = 640, - [873] = 608, - [874] = 609, - [875] = 617, - [876] = 610, - [877] = 611, - [878] = 612, - [879] = 613, - [880] = 632, - [881] = 618, - [882] = 616, - [883] = 615, - [884] = 608, - [885] = 640, - [886] = 615, - [887] = 632, - [888] = 617, + [531] = 526, + [532] = 527, + [533] = 515, + [534] = 522, + [535] = 521, + [536] = 514, + [537] = 510, + [538] = 512, + [539] = 511, + [540] = 516, + [541] = 515, + [542] = 518, + [543] = 526, + [544] = 515, + [545] = 518, + [546] = 515, + [547] = 526, + [548] = 518, + [549] = 549, + [550] = 515, + [551] = 526, + [552] = 552, + [553] = 552, + [554] = 522, + [555] = 555, + [556] = 556, + [557] = 515, + [558] = 522, + [559] = 529, + [560] = 526, + [561] = 527, + [562] = 518, + [563] = 521, + [564] = 516, + [565] = 511, + [566] = 512, + [567] = 567, + [568] = 514, + [569] = 569, + [570] = 552, + [571] = 518, + [572] = 572, + [573] = 521, + [574] = 567, + [575] = 514, + [576] = 510, + [577] = 569, + [578] = 527, + [579] = 552, + [580] = 518, + [581] = 572, + [582] = 512, + [583] = 511, + [584] = 516, + [585] = 522, + [586] = 526, + [587] = 587, + [588] = 392, + [589] = 518, + [590] = 527, + [591] = 567, + [592] = 521, + [593] = 522, + [594] = 527, + [595] = 587, + [596] = 549, + [597] = 514, + [598] = 510, + [599] = 512, + [600] = 521, + [601] = 516, + [602] = 511, + [603] = 512, + [604] = 510, + [605] = 514, + [606] = 511, + [607] = 516, + [608] = 514, + [609] = 510, + [610] = 521, + [611] = 569, + [612] = 552, + [613] = 518, + [614] = 572, + [615] = 527, + [616] = 512, + [617] = 511, + [618] = 516, + [619] = 522, + [620] = 526, + [621] = 527, + [622] = 521, + [623] = 514, + [624] = 510, + [625] = 522, + [626] = 567, + [627] = 512, + [628] = 511, + [629] = 522, + [630] = 516, + [631] = 555, + [632] = 569, + [633] = 522, + [634] = 516, + [635] = 511, + [636] = 512, + [637] = 510, + [638] = 514, + [639] = 521, + [640] = 527, + [641] = 552, + [642] = 518, + [643] = 556, + [644] = 572, + [645] = 567, + [646] = 526, + [647] = 529, + [648] = 526, + [649] = 569, + [650] = 522, + [651] = 529, + [652] = 549, + [653] = 572, + [654] = 552, + [655] = 518, + [656] = 527, + [657] = 518, + [658] = 572, + [659] = 406, + [660] = 521, + [661] = 514, + [662] = 337, + [663] = 510, + [664] = 512, + [665] = 511, + [666] = 516, + [667] = 572, + [668] = 552, + [669] = 569, + [670] = 555, + [671] = 398, + [672] = 399, + [673] = 402, + [674] = 555, + [675] = 396, + [676] = 516, + [677] = 511, + [678] = 512, + [679] = 552, + [680] = 510, + [681] = 514, + [682] = 549, + [683] = 587, + [684] = 388, + [685] = 391, + [686] = 522, + [687] = 521, + [688] = 526, + [689] = 527, + [690] = 567, + [691] = 529, + [692] = 379, + [693] = 378, + [694] = 549, + [695] = 569, + [696] = 587, + [697] = 372, + [698] = 572, + [699] = 569, + [700] = 370, + [701] = 404, + [702] = 364, + [703] = 549, + [704] = 587, + [705] = 549, + [706] = 569, + [707] = 555, + [708] = 552, + [709] = 518, + [710] = 343, + [711] = 572, + [712] = 569, + [713] = 572, + [714] = 366, + [715] = 344, + [716] = 549, + [717] = 567, + [718] = 516, + [719] = 511, + [720] = 512, + [721] = 572, + [722] = 552, + [723] = 569, + [724] = 527, + [725] = 521, + [726] = 549, + [727] = 587, + [728] = 549, + [729] = 572, + [730] = 552, + [731] = 569, + [732] = 514, + [733] = 510, + [734] = 512, + [735] = 511, + [736] = 516, + [737] = 555, + [738] = 510, + [739] = 569, + [740] = 552, + [741] = 522, + [742] = 526, + [743] = 572, + [744] = 552, + [745] = 569, + [746] = 518, + [747] = 572, + [748] = 549, + [749] = 587, + [750] = 529, + [751] = 556, + [752] = 549, + [753] = 587, + [754] = 521, + [755] = 567, + [756] = 397, + [757] = 514, + [758] = 569, + [759] = 552, + [760] = 572, + [761] = 527, + [762] = 549, + [763] = 587, + [764] = 569, + [765] = 552, + [766] = 572, + [767] = 388, + [768] = 392, + [769] = 399, + [770] = 402, + [771] = 398, + [772] = 337, + [773] = 406, + [774] = 366, + [775] = 379, + [776] = 391, + [777] = 370, + [778] = 372, + [779] = 396, + [780] = 378, + [781] = 364, + [782] = 404, + [783] = 343, + [784] = 784, + [785] = 384, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 346, + [791] = 339, + [792] = 386, + [793] = 380, + [794] = 382, + [795] = 341, + [796] = 347, + [797] = 316, + [798] = 319, + [799] = 308, + [800] = 387, + [801] = 395, + [802] = 368, + [803] = 371, + [804] = 404, + [805] = 307, + [806] = 308, + [807] = 320, + [808] = 307, + [809] = 320, + [810] = 318, + [811] = 319, + [812] = 313, + [813] = 316, + [814] = 316, + [815] = 320, + [816] = 307, + [817] = 316, + [818] = 307, + [819] = 308, + [820] = 316, + [821] = 308, + [822] = 319, + [823] = 319, + [824] = 308, + [825] = 320, + [826] = 308, + [827] = 307, + [828] = 319, + [829] = 308, + [830] = 308, + [831] = 320, + [832] = 832, + [833] = 833, + [834] = 319, + [835] = 316, + [836] = 832, + [837] = 833, + [838] = 833, + [839] = 307, + [840] = 832, + [841] = 316, + [842] = 320, + [843] = 319, + [844] = 833, + [845] = 320, + [846] = 832, + [847] = 307, + [848] = 320, + [849] = 833, + [850] = 319, + [851] = 832, + [852] = 832, + [853] = 316, + [854] = 832, + [855] = 833, + [856] = 833, + [857] = 833, + [858] = 833, + [859] = 307, + [860] = 832, + [861] = 832, + [862] = 832, + [863] = 833, + [864] = 833, + [865] = 833, + [866] = 832, + [867] = 832, + [868] = 832, + [869] = 869, + [870] = 870, + [871] = 870, + [872] = 870, + [873] = 303, + [874] = 304, + [875] = 875, + [876] = 876, + [877] = 876, + [878] = 875, + [879] = 876, + [880] = 880, + [881] = 881, + [882] = 875, + [883] = 883, + [884] = 880, + [885] = 885, + [886] = 883, + [887] = 887, + [888] = 888, [889] = 889, - [890] = 890, - [891] = 891, + [890] = 889, + [891] = 787, [892] = 892, [893] = 893, - [894] = 894, - [895] = 346, - [896] = 420, - [897] = 408, - [898] = 346, - [899] = 410, - [900] = 411, - [901] = 415, - [902] = 380, - [903] = 350, - [904] = 418, - [905] = 419, - [906] = 407, - [907] = 409, - [908] = 426, - [909] = 416, - [910] = 351, - [911] = 355, - [912] = 356, - [913] = 350, - [914] = 360, - [915] = 351, - [916] = 349, - [917] = 356, - [918] = 355, - [919] = 346, - [920] = 350, - [921] = 346, - [922] = 346, - [923] = 355, - [924] = 356, - [925] = 346, - [926] = 355, - [927] = 346, - [928] = 351, - [929] = 351, - [930] = 356, - [931] = 355, - [932] = 351, - [933] = 356, - [934] = 350, - [935] = 346, - [936] = 350, - [937] = 350, - [938] = 938, - [939] = 939, - [940] = 939, - [941] = 939, - [942] = 938, - [943] = 356, - [944] = 351, - [945] = 939, - [946] = 939, - [947] = 350, - [948] = 938, - [949] = 938, - [950] = 939, - [951] = 938, - [952] = 939, - [953] = 351, - [954] = 350, - [955] = 939, - [956] = 939, - [957] = 355, - [958] = 938, - [959] = 939, - [960] = 938, - [961] = 938, - [962] = 938, - [963] = 356, - [964] = 355, - [965] = 939, - [966] = 939, - [967] = 356, - [968] = 938, - [969] = 355, - [970] = 351, - [971] = 938, - [972] = 939, - [973] = 938, - [974] = 938, - [975] = 975, - [976] = 976, - [977] = 976, - [978] = 976, - [979] = 342, - [980] = 339, - [981] = 357, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 982, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 986, - [990] = 982, - [991] = 991, - [992] = 992, - [993] = 988, - [994] = 987, - [995] = 986, - [996] = 996, - [997] = 996, - [998] = 892, - [999] = 999, - [1000] = 996, - [1001] = 996, - [1002] = 999, - [1003] = 996, - [1004] = 996, - [1005] = 996, - [1006] = 996, - [1007] = 996, - [1008] = 999, - [1009] = 996, - [1010] = 996, - [1011] = 999, - [1012] = 999, - [1013] = 999, - [1014] = 996, - [1015] = 996, - [1016] = 996, - [1017] = 999, - [1018] = 1018, - [1019] = 999, - [1020] = 999, - [1021] = 893, - [1022] = 1022, - [1023] = 996, - [1024] = 999, - [1025] = 999, - [1026] = 999, - [1027] = 996, - [1028] = 996, - [1029] = 999, - [1030] = 996, - [1031] = 996, - [1032] = 996, + [894] = 889, + [895] = 889, + [896] = 889, + [897] = 892, + [898] = 889, + [899] = 892, + [900] = 889, + [901] = 889, + [902] = 789, + [903] = 889, + [904] = 889, + [905] = 889, + [906] = 892, + [907] = 892, + [908] = 892, + [909] = 889, + [910] = 892, + [911] = 892, + [912] = 889, + [913] = 889, + [914] = 889, + [915] = 892, + [916] = 892, + [917] = 892, + [918] = 892, + [919] = 919, + [920] = 889, + [921] = 892, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 922, + [926] = 923, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 923, + [931] = 931, + [932] = 924, + [933] = 933, + [934] = 927, + [935] = 935, + [936] = 935, + [937] = 928, + [938] = 929, + [939] = 933, + [940] = 940, + [941] = 940, + [942] = 933, + [943] = 940, + [944] = 944, + [945] = 945, + [946] = 927, + [947] = 947, + [948] = 948, + [949] = 935, + [950] = 923, + [951] = 924, + [952] = 927, + [953] = 927, + [954] = 924, + [955] = 931, + [956] = 928, + [957] = 929, + [958] = 931, + [959] = 929, + [960] = 931, + [961] = 924, + [962] = 923, + [963] = 933, + [964] = 928, + [965] = 935, + [966] = 966, + [967] = 929, + [968] = 940, + [969] = 928, + [970] = 927, + [971] = 922, + [972] = 922, + [973] = 927, + [974] = 940, + [975] = 928, + [976] = 929, + [977] = 927, + [978] = 931, + [979] = 979, + [980] = 980, + [981] = 935, + [982] = 944, + [983] = 945, + [984] = 924, + [985] = 947, + [986] = 948, + [987] = 923, + [988] = 922, + [989] = 928, + [990] = 929, + [991] = 927, + [992] = 923, + [993] = 931, + [994] = 924, + [995] = 923, + [996] = 935, + [997] = 966, + [998] = 940, + [999] = 924, + [1000] = 922, + [1001] = 931, + [1002] = 1002, + [1003] = 935, + [1004] = 944, + [1005] = 945, + [1006] = 929, + [1007] = 947, + [1008] = 948, + [1009] = 928, + [1010] = 928, + [1011] = 929, + [1012] = 948, + [1013] = 927, + [1014] = 931, + [1015] = 924, + [1016] = 935, + [1017] = 966, + [1018] = 940, + [1019] = 947, + [1020] = 933, + [1021] = 945, + [1022] = 944, + [1023] = 922, + [1024] = 944, + [1025] = 945, + [1026] = 940, + [1027] = 947, + [1028] = 948, + [1029] = 931, + [1030] = 928, + [1031] = 929, + [1032] = 923, [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1033, - [1041] = 1041, - [1042] = 1042, - [1043] = 1039, - [1044] = 1033, - [1045] = 1045, - [1046] = 1046, - [1047] = 1035, - [1048] = 1036, - [1049] = 1038, - [1050] = 1039, - [1051] = 1041, - [1052] = 1033, - [1053] = 1033, - [1054] = 1033, - [1055] = 1033, - [1056] = 1033, - [1057] = 1033, - [1058] = 1033, - [1059] = 1033, - [1060] = 1037, - [1061] = 1061, - [1062] = 1062, - [1063] = 1038, - [1064] = 1034, - [1065] = 1065, - [1066] = 1042, - [1067] = 1038, - [1068] = 1045, - [1069] = 1045, - [1070] = 1046, - [1071] = 1033, - [1072] = 1033, - [1073] = 1035, - [1074] = 1036, - [1075] = 1038, - [1076] = 1037, - [1077] = 1042, - [1078] = 1039, - [1079] = 1079, - [1080] = 1041, - [1081] = 1041, - [1082] = 1037, - [1083] = 1039, - [1084] = 1038, - [1085] = 1036, - [1086] = 1035, - [1087] = 1046, - [1088] = 1045, - [1089] = 1037, - [1090] = 1033, - [1091] = 1042, - [1092] = 1041, - [1093] = 1042, - [1094] = 1045, - [1095] = 1046, - [1096] = 1035, - [1097] = 1041, - [1098] = 1061, - [1099] = 1062, - [1100] = 1039, - [1101] = 1034, - [1102] = 1065, - [1103] = 1036, - [1104] = 1042, - [1105] = 1061, - [1106] = 1045, - [1107] = 1046, - [1108] = 1038, - [1109] = 1037, - [1110] = 1035, - [1111] = 1036, - [1112] = 1038, - [1113] = 1039, - [1114] = 1079, - [1115] = 1041, - [1116] = 1116, - [1117] = 1039, - [1118] = 1041, - [1119] = 1033, - [1120] = 1037, - [1121] = 1061, - [1122] = 1062, - [1123] = 1038, - [1124] = 1034, - [1125] = 1065, - [1126] = 1033, - [1127] = 1045, - [1128] = 1046, - [1129] = 1129, - [1130] = 1041, - [1131] = 1035, - [1132] = 1036, - [1133] = 1039, - [1134] = 1079, - [1135] = 1041, - [1136] = 1036, - [1137] = 1035, - [1138] = 1038, - [1139] = 1046, - [1140] = 1045, - [1141] = 1061, - [1142] = 1062, - [1143] = 1037, - [1144] = 1046, - [1145] = 1065, - [1146] = 1039, - [1147] = 1045, - [1148] = 1046, - [1149] = 1037, - [1150] = 1038, - [1151] = 1035, - [1152] = 1036, - [1153] = 1039, - [1154] = 1079, - [1155] = 1041, - [1156] = 1061, - [1157] = 1062, - [1158] = 1038, - [1159] = 1034, - [1160] = 1065, - [1161] = 1045, - [1162] = 1046, - [1163] = 1036, - [1164] = 1035, - [1165] = 1035, - [1166] = 1036, - [1167] = 1039, - [1168] = 1079, - [1169] = 1079, - [1170] = 1061, - [1171] = 1062, - [1172] = 1033, - [1173] = 1034, - [1174] = 1065, - [1175] = 1045, - [1176] = 1046, - [1177] = 1177, - [1178] = 1036, - [1179] = 1035, - [1180] = 1036, - [1181] = 1039, - [1182] = 1079, - [1183] = 1041, - [1184] = 1046, - [1185] = 1061, - [1186] = 1062, - [1187] = 1045, - [1188] = 1034, - [1189] = 1065, - [1190] = 1035, - [1191] = 1042, - [1192] = 1033, - [1193] = 1129, - [1194] = 1079, - [1195] = 1042, - [1196] = 1061, - [1197] = 1062, - [1198] = 1042, - [1199] = 1034, - [1200] = 1065, - [1201] = 1033, - [1202] = 1046, - [1203] = 1129, - [1204] = 1079, - [1205] = 1061, - [1206] = 1062, - [1207] = 1207, - [1208] = 1034, - [1209] = 1065, - [1210] = 1045, - [1211] = 1129, - [1212] = 1079, - [1213] = 1061, - [1214] = 1062, - [1215] = 1065, - [1216] = 1034, - [1217] = 1065, - [1218] = 1038, - [1219] = 1129, - [1220] = 1079, - [1221] = 1061, - [1222] = 1062, - [1223] = 1034, - [1224] = 1034, - [1225] = 1065, - [1226] = 1041, - [1227] = 1129, - [1228] = 1079, - [1229] = 1061, - [1230] = 1062, - [1231] = 1062, - [1232] = 1034, - [1233] = 1065, - [1234] = 1033, - [1235] = 1129, - [1236] = 1079, - [1237] = 1207, - [1238] = 1129, - [1239] = 1207, - [1240] = 1129, - [1241] = 1207, - [1242] = 1129, - [1243] = 1207, - [1244] = 1129, - [1245] = 1207, - [1246] = 1129, - [1247] = 1207, - [1248] = 1129, - [1249] = 1207, - [1250] = 1207, - [1251] = 1207, - [1252] = 1207, - [1253] = 1207, - [1254] = 1207, + [1034] = 931, + [1035] = 924, + [1036] = 935, + [1037] = 966, + [1038] = 940, + [1039] = 944, + [1040] = 945, + [1041] = 940, + [1042] = 947, + [1043] = 948, + [1044] = 928, + [1045] = 929, + [1046] = 935, + [1047] = 927, + [1048] = 931, + [1049] = 924, + [1050] = 935, + [1051] = 966, + [1052] = 940, + [1053] = 944, + [1054] = 945, + [1055] = 933, + [1056] = 947, + [1057] = 948, + [1058] = 928, + [1059] = 929, + [1060] = 923, + [1061] = 924, + [1062] = 931, + [1063] = 924, + [1064] = 935, + [1065] = 966, + [1066] = 940, + [1067] = 931, + [1068] = 944, + [1069] = 945, + [1070] = 935, + [1071] = 947, + [1072] = 948, + [1073] = 929, + [1074] = 922, + [1075] = 928, + [1076] = 1076, + [1077] = 966, + [1078] = 944, + [1079] = 945, + [1080] = 927, + [1081] = 947, + [1082] = 948, + [1083] = 922, + [1084] = 923, + [1085] = 1076, + [1086] = 966, + [1087] = 944, + [1088] = 945, + [1089] = 933, + [1090] = 947, + [1091] = 948, + [1092] = 1076, + [1093] = 1076, + [1094] = 966, + [1095] = 944, + [1096] = 945, + [1097] = 933, + [1098] = 947, + [1099] = 948, + [1100] = 966, + [1101] = 1076, + [1102] = 966, + [1103] = 944, + [1104] = 945, + [1105] = 940, + [1106] = 947, + [1107] = 948, + [1108] = 933, + [1109] = 1076, + [1110] = 966, + [1111] = 944, + [1112] = 945, + [1113] = 923, + [1114] = 947, + [1115] = 948, + [1116] = 923, + [1117] = 1076, + [1118] = 966, + [1119] = 1002, + [1120] = 1076, + [1121] = 1002, + [1122] = 1076, + [1123] = 1002, + [1124] = 1076, + [1125] = 1002, + [1126] = 1076, + [1127] = 1002, + [1128] = 1076, + [1129] = 1002, + [1130] = 1076, + [1131] = 1002, + [1132] = 1002, + [1133] = 1002, + [1134] = 1002, + [1135] = 1002, + [1136] = 1002, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3441,22 +3309,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 17}, [9] = {.lex_state = 17}, [10] = {.lex_state = 17}, - [11] = {.lex_state = 18}, + [11] = {.lex_state = 17}, [12] = {.lex_state = 17}, - [13] = {.lex_state = 17}, + [13] = {.lex_state = 18}, [14] = {.lex_state = 17}, - [15] = {.lex_state = 17}, + [15] = {.lex_state = 18}, [16] = {.lex_state = 18}, - [17] = {.lex_state = 17}, - [18] = {.lex_state = 18}, - [19] = {.lex_state = 18}, + [17] = {.lex_state = 18}, + [18] = {.lex_state = 17}, + [19] = {.lex_state = 17}, [20] = {.lex_state = 18}, [21] = {.lex_state = 18}, [22] = {.lex_state = 18}, - [23] = {.lex_state = 17}, + [23] = {.lex_state = 18}, [24] = {.lex_state = 17}, [25] = {.lex_state = 18}, - [26] = {.lex_state = 18}, + [26] = {.lex_state = 17}, [27] = {.lex_state = 18}, [28] = {.lex_state = 18}, [29] = {.lex_state = 18}, @@ -3577,93 +3445,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 18}, [145] = {.lex_state = 18}, [146] = {.lex_state = 18}, - [147] = {.lex_state = 18}, - [148] = {.lex_state = 18}, - [149] = {.lex_state = 18}, - [150] = {.lex_state = 18}, - [151] = {.lex_state = 18}, - [152] = {.lex_state = 18}, - [153] = {.lex_state = 18}, - [154] = {.lex_state = 18}, - [155] = {.lex_state = 18}, - [156] = {.lex_state = 18}, - [157] = {.lex_state = 18}, - [158] = {.lex_state = 18}, - [159] = {.lex_state = 18}, - [160] = {.lex_state = 18}, + [147] = {.lex_state = 0}, + [148] = {.lex_state = 0}, + [149] = {.lex_state = 16}, + [150] = {.lex_state = 0}, + [151] = {.lex_state = 0}, + [152] = {.lex_state = 16}, + [153] = {.lex_state = 17}, + [154] = {.lex_state = 17}, + [155] = {.lex_state = 17}, + [156] = {.lex_state = 17}, + [157] = {.lex_state = 17}, + [158] = {.lex_state = 0}, + [159] = {.lex_state = 16}, + [160] = {.lex_state = 17}, [161] = {.lex_state = 0}, - [162] = {.lex_state = 0}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 16}, - [165] = {.lex_state = 0}, - [166] = {.lex_state = 16}, - [167] = {.lex_state = 17}, + [162] = {.lex_state = 17}, + [163] = {.lex_state = 17}, + [164] = {.lex_state = 17}, + [165] = {.lex_state = 17}, + [166] = {.lex_state = 17}, + [167] = {.lex_state = 16}, [168] = {.lex_state = 17}, - [169] = {.lex_state = 0}, + [169] = {.lex_state = 18}, [170] = {.lex_state = 17}, - [171] = {.lex_state = 17}, - [172] = {.lex_state = 0}, - [173] = {.lex_state = 16}, + [171] = {.lex_state = 16}, + [172] = {.lex_state = 18}, + [173] = {.lex_state = 18}, [174] = {.lex_state = 17}, [175] = {.lex_state = 17}, - [176] = {.lex_state = 17}, + [176] = {.lex_state = 18}, [177] = {.lex_state = 17}, [178] = {.lex_state = 16}, [179] = {.lex_state = 17}, [180] = {.lex_state = 17}, - [181] = {.lex_state = 17}, - [182] = {.lex_state = 17}, - [183] = {.lex_state = 17}, + [181] = {.lex_state = 18}, + [182] = {.lex_state = 18}, + [183] = {.lex_state = 16}, [184] = {.lex_state = 17}, - [185] = {.lex_state = 17}, + [185] = {.lex_state = 18}, [186] = {.lex_state = 18}, - [187] = {.lex_state = 18}, - [188] = {.lex_state = 18}, - [189] = {.lex_state = 16}, + [187] = {.lex_state = 17}, + [188] = {.lex_state = 17}, + [189] = {.lex_state = 18}, [190] = {.lex_state = 18}, - [191] = {.lex_state = 18}, - [192] = {.lex_state = 17}, - [193] = {.lex_state = 16}, + [191] = {.lex_state = 17}, + [192] = {.lex_state = 18}, + [193] = {.lex_state = 17}, [194] = {.lex_state = 17}, [195] = {.lex_state = 18}, - [196] = {.lex_state = 17}, - [197] = {.lex_state = 17}, - [198] = {.lex_state = 17}, + [196] = {.lex_state = 20}, + [197] = {.lex_state = 18}, + [198] = {.lex_state = 18}, [199] = {.lex_state = 20}, - [200] = {.lex_state = 17}, - [201] = {.lex_state = 17}, + [200] = {.lex_state = 18}, + [201] = {.lex_state = 18}, [202] = {.lex_state = 20}, - [203] = {.lex_state = 17}, - [204] = {.lex_state = 18}, - [205] = {.lex_state = 20}, + [203] = {.lex_state = 18}, + [204] = {.lex_state = 20}, + [205] = {.lex_state = 18}, [206] = {.lex_state = 18}, [207] = {.lex_state = 18}, [208] = {.lex_state = 18}, - [209] = {.lex_state = 20}, - [210] = {.lex_state = 16}, - [211] = {.lex_state = 17}, - [212] = {.lex_state = 18}, - [213] = {.lex_state = 20}, - [214] = {.lex_state = 18}, - [215] = {.lex_state = 18}, - [216] = {.lex_state = 18}, - [217] = {.lex_state = 18}, - [218] = {.lex_state = 18}, - [219] = {.lex_state = 18}, - [220] = {.lex_state = 18}, - [221] = {.lex_state = 18}, - [222] = {.lex_state = 18}, - [223] = {.lex_state = 18}, + [209] = {.lex_state = 18}, + [210] = {.lex_state = 18}, + [211] = {.lex_state = 18}, + [212] = {.lex_state = 19}, + [213] = {.lex_state = 19}, + [214] = {.lex_state = 19}, + [215] = {.lex_state = 19}, + [216] = {.lex_state = 19}, + [217] = {.lex_state = 19}, + [218] = {.lex_state = 19}, + [219] = {.lex_state = 19}, + [220] = {.lex_state = 19}, + [221] = {.lex_state = 19}, + [222] = {.lex_state = 19}, + [223] = {.lex_state = 19}, [224] = {.lex_state = 19}, [225] = {.lex_state = 19}, [226] = {.lex_state = 19}, [227] = {.lex_state = 19}, [228] = {.lex_state = 19}, [229] = {.lex_state = 19}, - [230] = {.lex_state = 18}, - [231] = {.lex_state = 18}, + [230] = {.lex_state = 19}, + [231] = {.lex_state = 19}, [232] = {.lex_state = 19}, - [233] = {.lex_state = 18}, + [233] = {.lex_state = 19}, [234] = {.lex_state = 19}, [235] = {.lex_state = 19}, [236] = {.lex_state = 19}, @@ -3732,162 +3600,162 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [299] = {.lex_state = 19}, [300] = {.lex_state = 19}, [301] = {.lex_state = 19}, - [302] = {.lex_state = 19}, - [303] = {.lex_state = 19}, - [304] = {.lex_state = 19}, - [305] = {.lex_state = 19}, - [306] = {.lex_state = 19}, - [307] = {.lex_state = 19}, - [308] = {.lex_state = 19}, - [309] = {.lex_state = 19}, - [310] = {.lex_state = 19}, - [311] = {.lex_state = 19}, - [312] = {.lex_state = 19}, - [313] = {.lex_state = 19}, - [314] = {.lex_state = 19}, - [315] = {.lex_state = 19}, - [316] = {.lex_state = 19}, - [317] = {.lex_state = 19}, - [318] = {.lex_state = 19}, - [319] = {.lex_state = 19}, - [320] = {.lex_state = 19}, - [321] = {.lex_state = 19}, - [322] = {.lex_state = 19}, - [323] = {.lex_state = 19}, - [324] = {.lex_state = 19}, - [325] = {.lex_state = 19}, - [326] = {.lex_state = 19}, - [327] = {.lex_state = 19}, - [328] = {.lex_state = 19}, - [329] = {.lex_state = 19}, - [330] = {.lex_state = 19}, - [331] = {.lex_state = 19}, - [332] = {.lex_state = 19}, - [333] = {.lex_state = 19}, - [334] = {.lex_state = 19}, - [335] = {.lex_state = 19}, - [336] = {.lex_state = 19}, - [337] = {.lex_state = 19}, - [338] = {.lex_state = 19}, + [302] = {.lex_state = 16}, + [303] = {.lex_state = 17}, + [304] = {.lex_state = 17}, + [305] = {.lex_state = 17}, + [306] = {.lex_state = 17}, + [307] = {.lex_state = 17}, + [308] = {.lex_state = 17}, + [309] = {.lex_state = 17}, + [310] = {.lex_state = 17}, + [311] = {.lex_state = 17}, + [312] = {.lex_state = 18}, + [313] = {.lex_state = 17}, + [314] = {.lex_state = 17}, + [315] = {.lex_state = 17}, + [316] = {.lex_state = 17}, + [317] = {.lex_state = 17}, + [318] = {.lex_state = 17}, + [319] = {.lex_state = 17}, + [320] = {.lex_state = 17}, + [321] = {.lex_state = 17}, + [322] = {.lex_state = 17}, + [323] = {.lex_state = 17}, + [324] = {.lex_state = 17}, + [325] = {.lex_state = 17}, + [326] = {.lex_state = 17}, + [327] = {.lex_state = 17}, + [328] = {.lex_state = 17}, + [329] = {.lex_state = 18}, + [330] = {.lex_state = 17}, + [331] = {.lex_state = 17}, + [332] = {.lex_state = 17}, + [333] = {.lex_state = 17}, + [334] = {.lex_state = 17}, + [335] = {.lex_state = 17}, + [336] = {.lex_state = 17}, + [337] = {.lex_state = 17}, + [338] = {.lex_state = 18}, [339] = {.lex_state = 17}, - [340] = {.lex_state = 16}, + [340] = {.lex_state = 20}, [341] = {.lex_state = 17}, - [342] = {.lex_state = 17}, + [342] = {.lex_state = 18}, [343] = {.lex_state = 17}, - [344] = {.lex_state = 18}, + [344] = {.lex_state = 17}, [345] = {.lex_state = 17}, [346] = {.lex_state = 17}, [347] = {.lex_state = 17}, - [348] = {.lex_state = 18}, + [348] = {.lex_state = 17}, [349] = {.lex_state = 17}, - [350] = {.lex_state = 17}, + [350] = {.lex_state = 18}, [351] = {.lex_state = 17}, - [352] = {.lex_state = 18}, - [353] = {.lex_state = 17}, - [354] = {.lex_state = 17}, - [355] = {.lex_state = 17}, - [356] = {.lex_state = 17}, + [352] = {.lex_state = 17}, + [353] = {.lex_state = 18}, + [354] = {.lex_state = 18}, + [355] = {.lex_state = 18}, + [356] = {.lex_state = 18}, [357] = {.lex_state = 17}, - [358] = {.lex_state = 17}, + [358] = {.lex_state = 18}, [359] = {.lex_state = 18}, [360] = {.lex_state = 17}, - [361] = {.lex_state = 17}, + [361] = {.lex_state = 18}, [362] = {.lex_state = 18}, [363] = {.lex_state = 17}, - [364] = {.lex_state = 18}, + [364] = {.lex_state = 17}, [365] = {.lex_state = 17}, [366] = {.lex_state = 17}, [367] = {.lex_state = 17}, [368] = {.lex_state = 17}, [369] = {.lex_state = 17}, [370] = {.lex_state = 17}, - [371] = {.lex_state = 18}, + [371] = {.lex_state = 17}, [372] = {.lex_state = 17}, - [373] = {.lex_state = 17}, - [374] = {.lex_state = 17}, - [375] = {.lex_state = 17}, + [373] = {.lex_state = 18}, + [374] = {.lex_state = 18}, + [375] = {.lex_state = 18}, [376] = {.lex_state = 18}, - [377] = {.lex_state = 17}, + [377] = {.lex_state = 18}, [378] = {.lex_state = 17}, [379] = {.lex_state = 17}, [380] = {.lex_state = 17}, - [381] = {.lex_state = 18}, - [382] = {.lex_state = 18}, - [383] = {.lex_state = 17}, - [384] = {.lex_state = 18}, + [381] = {.lex_state = 17}, + [382] = {.lex_state = 17}, + [383] = {.lex_state = 18}, + [384] = {.lex_state = 17}, [385] = {.lex_state = 18}, [386] = {.lex_state = 17}, [387] = {.lex_state = 17}, [388] = {.lex_state = 17}, - [389] = {.lex_state = 17}, - [390] = {.lex_state = 17}, + [389] = {.lex_state = 18}, + [390] = {.lex_state = 20}, [391] = {.lex_state = 17}, [392] = {.lex_state = 17}, - [393] = {.lex_state = 17}, - [394] = {.lex_state = 17}, - [395] = {.lex_state = 18}, + [393] = {.lex_state = 18}, + [394] = {.lex_state = 20}, + [395] = {.lex_state = 17}, [396] = {.lex_state = 17}, [397] = {.lex_state = 17}, [398] = {.lex_state = 17}, [399] = {.lex_state = 17}, - [400] = {.lex_state = 17}, + [400] = {.lex_state = 20}, [401] = {.lex_state = 17}, [402] = {.lex_state = 17}, - [403] = {.lex_state = 17}, + [403] = {.lex_state = 18}, [404] = {.lex_state = 17}, - [405] = {.lex_state = 17}, + [405] = {.lex_state = 18}, [406] = {.lex_state = 17}, - [407] = {.lex_state = 17}, - [408] = {.lex_state = 17}, - [409] = {.lex_state = 17}, - [410] = {.lex_state = 17}, - [411] = {.lex_state = 17}, + [407] = {.lex_state = 18}, + [408] = {.lex_state = 18}, + [409] = {.lex_state = 18}, + [410] = {.lex_state = 18}, + [411] = {.lex_state = 18}, [412] = {.lex_state = 18}, [413] = {.lex_state = 18}, [414] = {.lex_state = 17}, - [415] = {.lex_state = 17}, - [416] = {.lex_state = 17}, + [415] = {.lex_state = 18}, + [416] = {.lex_state = 18}, [417] = {.lex_state = 18}, - [418] = {.lex_state = 17}, + [418] = {.lex_state = 18}, [419] = {.lex_state = 17}, - [420] = {.lex_state = 17}, - [421] = {.lex_state = 17}, + [420] = {.lex_state = 18}, + [421] = {.lex_state = 18}, [422] = {.lex_state = 17}, - [423] = {.lex_state = 17}, + [423] = {.lex_state = 18}, [424] = {.lex_state = 17}, [425] = {.lex_state = 18}, - [426] = {.lex_state = 17}, - [427] = {.lex_state = 17}, - [428] = {.lex_state = 17}, - [429] = {.lex_state = 17}, + [426] = {.lex_state = 18}, + [427] = {.lex_state = 18}, + [428] = {.lex_state = 18}, + [429] = {.lex_state = 18}, [430] = {.lex_state = 17}, - [431] = {.lex_state = 17}, + [431] = {.lex_state = 18}, [432] = {.lex_state = 17}, - [433] = {.lex_state = 17}, - [434] = {.lex_state = 18}, - [435] = {.lex_state = 17}, - [436] = {.lex_state = 17}, - [437] = {.lex_state = 20}, + [433] = {.lex_state = 18}, + [434] = {.lex_state = 17}, + [435] = {.lex_state = 18}, + [436] = {.lex_state = 18}, + [437] = {.lex_state = 18}, [438] = {.lex_state = 18}, - [439] = {.lex_state = 17}, - [440] = {.lex_state = 20}, - [441] = {.lex_state = 17}, - [442] = {.lex_state = 17}, + [439] = {.lex_state = 18}, + [440] = {.lex_state = 19}, + [441] = {.lex_state = 18}, + [442] = {.lex_state = 18}, [443] = {.lex_state = 18}, [444] = {.lex_state = 18}, - [445] = {.lex_state = 20}, + [445] = {.lex_state = 18}, [446] = {.lex_state = 18}, - [447] = {.lex_state = 20}, - [448] = {.lex_state = 17}, - [449] = {.lex_state = 18}, - [450] = {.lex_state = 17}, - [451] = {.lex_state = 18}, + [447] = {.lex_state = 18}, + [448] = {.lex_state = 18}, + [449] = {.lex_state = 19}, + [450] = {.lex_state = 18}, + [451] = {.lex_state = 19}, [452] = {.lex_state = 18}, [453] = {.lex_state = 18}, [454] = {.lex_state = 18}, [455] = {.lex_state = 18}, [456] = {.lex_state = 18}, - [457] = {.lex_state = 18}, + [457] = {.lex_state = 19}, [458] = {.lex_state = 18}, [459] = {.lex_state = 18}, [460] = {.lex_state = 18}, @@ -3906,10 +3774,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [473] = {.lex_state = 18}, [474] = {.lex_state = 18}, [475] = {.lex_state = 18}, - [476] = {.lex_state = 18}, + [476] = {.lex_state = 17}, [477] = {.lex_state = 18}, [478] = {.lex_state = 18}, - [479] = {.lex_state = 18}, + [479] = {.lex_state = 17}, [480] = {.lex_state = 18}, [481] = {.lex_state = 18}, [482] = {.lex_state = 18}, @@ -3918,126 +3786,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 18}, [486] = {.lex_state = 18}, [487] = {.lex_state = 18}, - [488] = {.lex_state = 17}, + [488] = {.lex_state = 18}, [489] = {.lex_state = 18}, [490] = {.lex_state = 18}, [491] = {.lex_state = 18}, - [492] = {.lex_state = 18}, - [493] = {.lex_state = 18}, - [494] = {.lex_state = 18}, - [495] = {.lex_state = 18}, - [496] = {.lex_state = 18}, - [497] = {.lex_state = 18}, - [498] = {.lex_state = 18}, - [499] = {.lex_state = 18}, - [500] = {.lex_state = 18}, - [501] = {.lex_state = 18}, - [502] = {.lex_state = 18}, - [503] = {.lex_state = 18}, - [504] = {.lex_state = 18}, - [505] = {.lex_state = 18}, - [506] = {.lex_state = 18}, + [492] = {.lex_state = 20}, + [493] = {.lex_state = 20}, + [494] = {.lex_state = 19}, + [495] = {.lex_state = 20}, + [496] = {.lex_state = 20}, + [497] = {.lex_state = 20}, + [498] = {.lex_state = 19}, + [499] = {.lex_state = 19}, + [500] = {.lex_state = 20}, + [501] = {.lex_state = 19}, + [502] = {.lex_state = 20}, + [503] = {.lex_state = 20}, + [504] = {.lex_state = 19}, + [505] = {.lex_state = 19}, + [506] = {.lex_state = 20}, [507] = {.lex_state = 18}, - [508] = {.lex_state = 18}, - [509] = {.lex_state = 18}, - [510] = {.lex_state = 18}, - [511] = {.lex_state = 17}, - [512] = {.lex_state = 18}, - [513] = {.lex_state = 18}, - [514] = {.lex_state = 18}, - [515] = {.lex_state = 18}, + [508] = {.lex_state = 20}, + [509] = {.lex_state = 19}, + [510] = {.lex_state = 19}, + [511] = {.lex_state = 19}, + [512] = {.lex_state = 19}, + [513] = {.lex_state = 19}, + [514] = {.lex_state = 19}, + [515] = {.lex_state = 19}, [516] = {.lex_state = 19}, [517] = {.lex_state = 19}, - [518] = {.lex_state = 18}, + [518] = {.lex_state = 19}, [519] = {.lex_state = 19}, - [520] = {.lex_state = 18}, - [521] = {.lex_state = 18}, - [522] = {.lex_state = 18}, - [523] = {.lex_state = 18}, - [524] = {.lex_state = 18}, - [525] = {.lex_state = 18}, - [526] = {.lex_state = 18}, - [527] = {.lex_state = 18}, - [528] = {.lex_state = 18}, - [529] = {.lex_state = 18}, - [530] = {.lex_state = 18}, - [531] = {.lex_state = 18}, - [532] = {.lex_state = 18}, - [533] = {.lex_state = 18}, - [534] = {.lex_state = 18}, - [535] = {.lex_state = 18}, - [536] = {.lex_state = 18}, + [520] = {.lex_state = 19}, + [521] = {.lex_state = 19}, + [522] = {.lex_state = 19}, + [523] = {.lex_state = 19}, + [524] = {.lex_state = 19}, + [525] = {.lex_state = 19}, + [526] = {.lex_state = 19}, + [527] = {.lex_state = 19}, + [528] = {.lex_state = 19}, + [529] = {.lex_state = 19}, + [530] = {.lex_state = 19}, + [531] = {.lex_state = 19}, + [532] = {.lex_state = 19}, + [533] = {.lex_state = 19}, + [534] = {.lex_state = 19}, + [535] = {.lex_state = 19}, + [536] = {.lex_state = 19}, [537] = {.lex_state = 19}, - [538] = {.lex_state = 18}, - [539] = {.lex_state = 18}, - [540] = {.lex_state = 18}, - [541] = {.lex_state = 18}, - [542] = {.lex_state = 18}, - [543] = {.lex_state = 18}, - [544] = {.lex_state = 18}, - [545] = {.lex_state = 18}, - [546] = {.lex_state = 18}, - [547] = {.lex_state = 18}, - [548] = {.lex_state = 18}, - [549] = {.lex_state = 18}, - [550] = {.lex_state = 18}, - [551] = {.lex_state = 18}, - [552] = {.lex_state = 18}, - [553] = {.lex_state = 18}, - [554] = {.lex_state = 18}, - [555] = {.lex_state = 18}, - [556] = {.lex_state = 18}, - [557] = {.lex_state = 18}, - [558] = {.lex_state = 18}, - [559] = {.lex_state = 18}, - [560] = {.lex_state = 20}, - [561] = {.lex_state = 20}, - [562] = {.lex_state = 20}, - [563] = {.lex_state = 20}, - [564] = {.lex_state = 20}, + [538] = {.lex_state = 19}, + [539] = {.lex_state = 19}, + [540] = {.lex_state = 19}, + [541] = {.lex_state = 19}, + [542] = {.lex_state = 19}, + [543] = {.lex_state = 19}, + [544] = {.lex_state = 19}, + [545] = {.lex_state = 19}, + [546] = {.lex_state = 19}, + [547] = {.lex_state = 19}, + [548] = {.lex_state = 19}, + [549] = {.lex_state = 19}, + [550] = {.lex_state = 19}, + [551] = {.lex_state = 19}, + [552] = {.lex_state = 19}, + [553] = {.lex_state = 19}, + [554] = {.lex_state = 19}, + [555] = {.lex_state = 19}, + [556] = {.lex_state = 19}, + [557] = {.lex_state = 19}, + [558] = {.lex_state = 19}, + [559] = {.lex_state = 19}, + [560] = {.lex_state = 19}, + [561] = {.lex_state = 19}, + [562] = {.lex_state = 19}, + [563] = {.lex_state = 19}, + [564] = {.lex_state = 19}, [565] = {.lex_state = 19}, - [566] = {.lex_state = 20}, - [567] = {.lex_state = 20}, - [568] = {.lex_state = 20}, + [566] = {.lex_state = 19}, + [567] = {.lex_state = 19}, + [568] = {.lex_state = 19}, [569] = {.lex_state = 19}, - [570] = {.lex_state = 20}, - [571] = {.lex_state = 18}, - [572] = {.lex_state = 20}, - [573] = {.lex_state = 18}, - [574] = {.lex_state = 20}, - [575] = {.lex_state = 20}, - [576] = {.lex_state = 20}, - [577] = {.lex_state = 20}, - [578] = {.lex_state = 20}, - [579] = {.lex_state = 20}, + [570] = {.lex_state = 19}, + [571] = {.lex_state = 19}, + [572] = {.lex_state = 19}, + [573] = {.lex_state = 19}, + [574] = {.lex_state = 19}, + [575] = {.lex_state = 19}, + [576] = {.lex_state = 19}, + [577] = {.lex_state = 19}, + [578] = {.lex_state = 19}, + [579] = {.lex_state = 19}, [580] = {.lex_state = 19}, - [581] = {.lex_state = 18}, + [581] = {.lex_state = 19}, [582] = {.lex_state = 19}, - [583] = {.lex_state = 20}, - [584] = {.lex_state = 20}, + [583] = {.lex_state = 19}, + [584] = {.lex_state = 19}, [585] = {.lex_state = 19}, - [586] = {.lex_state = 20}, - [587] = {.lex_state = 20}, + [586] = {.lex_state = 19}, + [587] = {.lex_state = 19}, [588] = {.lex_state = 20}, - [589] = {.lex_state = 20}, - [590] = {.lex_state = 20}, - [591] = {.lex_state = 20}, + [589] = {.lex_state = 19}, + [590] = {.lex_state = 19}, + [591] = {.lex_state = 19}, [592] = {.lex_state = 19}, - [593] = {.lex_state = 20}, - [594] = {.lex_state = 20}, - [595] = {.lex_state = 20}, + [593] = {.lex_state = 19}, + [594] = {.lex_state = 19}, + [595] = {.lex_state = 19}, [596] = {.lex_state = 19}, - [597] = {.lex_state = 20}, - [598] = {.lex_state = 20}, + [597] = {.lex_state = 19}, + [598] = {.lex_state = 19}, [599] = {.lex_state = 19}, [600] = {.lex_state = 19}, - [601] = {.lex_state = 20}, - [602] = {.lex_state = 18}, - [603] = {.lex_state = 18}, - [604] = {.lex_state = 18}, - [605] = {.lex_state = 18}, - [606] = {.lex_state = 18}, - [607] = {.lex_state = 18}, + [601] = {.lex_state = 19}, + [602] = {.lex_state = 19}, + [603] = {.lex_state = 19}, + [604] = {.lex_state = 19}, + [605] = {.lex_state = 19}, + [606] = {.lex_state = 19}, + [607] = {.lex_state = 19}, [608] = {.lex_state = 19}, [609] = {.lex_state = 19}, [610] = {.lex_state = 19}, @@ -4089,10 +3957,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [656] = {.lex_state = 19}, [657] = {.lex_state = 19}, [658] = {.lex_state = 19}, - [659] = {.lex_state = 19}, + [659] = {.lex_state = 20}, [660] = {.lex_state = 19}, [661] = {.lex_state = 19}, - [662] = {.lex_state = 19}, + [662] = {.lex_state = 20}, [663] = {.lex_state = 19}, [664] = {.lex_state = 19}, [665] = {.lex_state = 19}, @@ -4101,11 +3969,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [668] = {.lex_state = 19}, [669] = {.lex_state = 19}, [670] = {.lex_state = 19}, - [671] = {.lex_state = 19}, - [672] = {.lex_state = 19}, - [673] = {.lex_state = 19}, + [671] = {.lex_state = 20}, + [672] = {.lex_state = 20}, + [673] = {.lex_state = 20}, [674] = {.lex_state = 19}, - [675] = {.lex_state = 19}, + [675] = {.lex_state = 20}, [676] = {.lex_state = 19}, [677] = {.lex_state = 19}, [678] = {.lex_state = 19}, @@ -4114,25 +3982,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [681] = {.lex_state = 19}, [682] = {.lex_state = 19}, [683] = {.lex_state = 19}, - [684] = {.lex_state = 19}, - [685] = {.lex_state = 19}, + [684] = {.lex_state = 20}, + [685] = {.lex_state = 20}, [686] = {.lex_state = 19}, [687] = {.lex_state = 19}, [688] = {.lex_state = 19}, [689] = {.lex_state = 19}, [690] = {.lex_state = 19}, [691] = {.lex_state = 19}, - [692] = {.lex_state = 19}, - [693] = {.lex_state = 19}, + [692] = {.lex_state = 20}, + [693] = {.lex_state = 20}, [694] = {.lex_state = 19}, [695] = {.lex_state = 19}, [696] = {.lex_state = 19}, - [697] = {.lex_state = 19}, + [697] = {.lex_state = 20}, [698] = {.lex_state = 19}, [699] = {.lex_state = 19}, - [700] = {.lex_state = 19}, - [701] = {.lex_state = 19}, - [702] = {.lex_state = 19}, + [700] = {.lex_state = 20}, + [701] = {.lex_state = 20}, + [702] = {.lex_state = 20}, [703] = {.lex_state = 19}, [704] = {.lex_state = 19}, [705] = {.lex_state = 19}, @@ -4140,12 +4008,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [707] = {.lex_state = 19}, [708] = {.lex_state = 19}, [709] = {.lex_state = 19}, - [710] = {.lex_state = 19}, + [710] = {.lex_state = 20}, [711] = {.lex_state = 19}, [712] = {.lex_state = 19}, [713] = {.lex_state = 19}, - [714] = {.lex_state = 19}, - [715] = {.lex_state = 19}, + [714] = {.lex_state = 20}, + [715] = {.lex_state = 20}, [716] = {.lex_state = 19}, [717] = {.lex_state = 19}, [718] = {.lex_state = 19}, @@ -4186,7 +4054,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [753] = {.lex_state = 19}, [754] = {.lex_state = 19}, [755] = {.lex_state = 19}, - [756] = {.lex_state = 19}, + [756] = {.lex_state = 20}, [757] = {.lex_state = 19}, [758] = {.lex_state = 19}, [759] = {.lex_state = 19}, @@ -4220,91 +4088,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [787] = {.lex_state = 19}, [788] = {.lex_state = 19}, [789] = {.lex_state = 19}, - [790] = {.lex_state = 19}, - [791] = {.lex_state = 18}, - [792] = {.lex_state = 19}, - [793] = {.lex_state = 19}, - [794] = {.lex_state = 19}, - [795] = {.lex_state = 19}, - [796] = {.lex_state = 19}, - [797] = {.lex_state = 19}, - [798] = {.lex_state = 19}, - [799] = {.lex_state = 19}, - [800] = {.lex_state = 19}, - [801] = {.lex_state = 19}, - [802] = {.lex_state = 19}, - [803] = {.lex_state = 19}, - [804] = {.lex_state = 19}, - [805] = {.lex_state = 19}, - [806] = {.lex_state = 19}, - [807] = {.lex_state = 19}, - [808] = {.lex_state = 19}, - [809] = {.lex_state = 18}, - [810] = {.lex_state = 19}, - [811] = {.lex_state = 19}, - [812] = {.lex_state = 19}, - [813] = {.lex_state = 19}, - [814] = {.lex_state = 19}, - [815] = {.lex_state = 19}, - [816] = {.lex_state = 18}, - [817] = {.lex_state = 19}, - [818] = {.lex_state = 18}, - [819] = {.lex_state = 19}, - [820] = {.lex_state = 19}, - [821] = {.lex_state = 19}, - [822] = {.lex_state = 19}, - [823] = {.lex_state = 19}, - [824] = {.lex_state = 19}, - [825] = {.lex_state = 19}, - [826] = {.lex_state = 19}, - [827] = {.lex_state = 19}, - [828] = {.lex_state = 19}, - [829] = {.lex_state = 19}, - [830] = {.lex_state = 19}, - [831] = {.lex_state = 19}, - [832] = {.lex_state = 19}, - [833] = {.lex_state = 19}, - [834] = {.lex_state = 19}, - [835] = {.lex_state = 19}, - [836] = {.lex_state = 19}, - [837] = {.lex_state = 19}, - [838] = {.lex_state = 19}, - [839] = {.lex_state = 19}, - [840] = {.lex_state = 19}, - [841] = {.lex_state = 19}, - [842] = {.lex_state = 19}, - [843] = {.lex_state = 19}, - [844] = {.lex_state = 19}, - [845] = {.lex_state = 19}, - [846] = {.lex_state = 19}, - [847] = {.lex_state = 19}, - [848] = {.lex_state = 19}, - [849] = {.lex_state = 19}, - [850] = {.lex_state = 19}, - [851] = {.lex_state = 19}, - [852] = {.lex_state = 19}, - [853] = {.lex_state = 19}, - [854] = {.lex_state = 19}, - [855] = {.lex_state = 19}, - [856] = {.lex_state = 19}, - [857] = {.lex_state = 19}, - [858] = {.lex_state = 19}, - [859] = {.lex_state = 19}, - [860] = {.lex_state = 19}, - [861] = {.lex_state = 19}, - [862] = {.lex_state = 19}, - [863] = {.lex_state = 19}, - [864] = {.lex_state = 19}, - [865] = {.lex_state = 19}, - [866] = {.lex_state = 19}, - [867] = {.lex_state = 19}, - [868] = {.lex_state = 19}, - [869] = {.lex_state = 19}, - [870] = {.lex_state = 19}, - [871] = {.lex_state = 19}, - [872] = {.lex_state = 19}, - [873] = {.lex_state = 19}, - [874] = {.lex_state = 19}, + [790] = {.lex_state = 1}, + [791] = {.lex_state = 1}, + [792] = {.lex_state = 1}, + [793] = {.lex_state = 1}, + [794] = {.lex_state = 1}, + [795] = {.lex_state = 1}, + [796] = {.lex_state = 1}, + [797] = {.lex_state = 1}, + [798] = {.lex_state = 1}, + [799] = {.lex_state = 1}, + [800] = {.lex_state = 1}, + [801] = {.lex_state = 1}, + [802] = {.lex_state = 1}, + [803] = {.lex_state = 1}, + [804] = {.lex_state = 1}, + [805] = {.lex_state = 1}, + [806] = {.lex_state = 1}, + [807] = {.lex_state = 1}, + [808] = {.lex_state = 1}, + [809] = {.lex_state = 1}, + [810] = {.lex_state = 1}, + [811] = {.lex_state = 1}, + [812] = {.lex_state = 1}, + [813] = {.lex_state = 1}, + [814] = {.lex_state = 1}, + [815] = {.lex_state = 1}, + [816] = {.lex_state = 1}, + [817] = {.lex_state = 1}, + [818] = {.lex_state = 1}, + [819] = {.lex_state = 1}, + [820] = {.lex_state = 1}, + [821] = {.lex_state = 1}, + [822] = {.lex_state = 1}, + [823] = {.lex_state = 1}, + [824] = {.lex_state = 1}, + [825] = {.lex_state = 1}, + [826] = {.lex_state = 1}, + [827] = {.lex_state = 1}, + [828] = {.lex_state = 1}, + [829] = {.lex_state = 1}, + [830] = {.lex_state = 1}, + [831] = {.lex_state = 1}, + [832] = {.lex_state = 1}, + [833] = {.lex_state = 1}, + [834] = {.lex_state = 1}, + [835] = {.lex_state = 1}, + [836] = {.lex_state = 1}, + [837] = {.lex_state = 1}, + [838] = {.lex_state = 1}, + [839] = {.lex_state = 1}, + [840] = {.lex_state = 1}, + [841] = {.lex_state = 1}, + [842] = {.lex_state = 1}, + [843] = {.lex_state = 1}, + [844] = {.lex_state = 1}, + [845] = {.lex_state = 1}, + [846] = {.lex_state = 1}, + [847] = {.lex_state = 1}, + [848] = {.lex_state = 1}, + [849] = {.lex_state = 1}, + [850] = {.lex_state = 1}, + [851] = {.lex_state = 1}, + [852] = {.lex_state = 1}, + [853] = {.lex_state = 1}, + [854] = {.lex_state = 1}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 1}, + [857] = {.lex_state = 1}, + [858] = {.lex_state = 1}, + [859] = {.lex_state = 1}, + [860] = {.lex_state = 1}, + [861] = {.lex_state = 1}, + [862] = {.lex_state = 1}, + [863] = {.lex_state = 1}, + [864] = {.lex_state = 1}, + [865] = {.lex_state = 1}, + [866] = {.lex_state = 1}, + [867] = {.lex_state = 1}, + [868] = {.lex_state = 1}, + [869] = {.lex_state = 1}, + [870] = {.lex_state = 1}, + [871] = {.lex_state = 1}, + [872] = {.lex_state = 1}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 0}, [875] = {.lex_state = 19}, [876] = {.lex_state = 19}, [877] = {.lex_state = 19}, @@ -4325,93 +4193,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [892] = {.lex_state = 19}, [893] = {.lex_state = 19}, [894] = {.lex_state = 19}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 1}, - [897] = {.lex_state = 1}, - [898] = {.lex_state = 1}, - [899] = {.lex_state = 1}, - [900] = {.lex_state = 1}, - [901] = {.lex_state = 1}, - [902] = {.lex_state = 1}, - [903] = {.lex_state = 1}, - [904] = {.lex_state = 1}, - [905] = {.lex_state = 1}, - [906] = {.lex_state = 1}, - [907] = {.lex_state = 1}, - [908] = {.lex_state = 1}, - [909] = {.lex_state = 1}, - [910] = {.lex_state = 1}, - [911] = {.lex_state = 1}, - [912] = {.lex_state = 1}, - [913] = {.lex_state = 1}, - [914] = {.lex_state = 1}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 1}, - [917] = {.lex_state = 1}, - [918] = {.lex_state = 1}, - [919] = {.lex_state = 1}, - [920] = {.lex_state = 1}, - [921] = {.lex_state = 1}, - [922] = {.lex_state = 1}, - [923] = {.lex_state = 1}, - [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, - [926] = {.lex_state = 1}, - [927] = {.lex_state = 1}, - [928] = {.lex_state = 1}, - [929] = {.lex_state = 1}, - [930] = {.lex_state = 1}, - [931] = {.lex_state = 1}, - [932] = {.lex_state = 1}, - [933] = {.lex_state = 1}, - [934] = {.lex_state = 1}, - [935] = {.lex_state = 1}, - [936] = {.lex_state = 1}, - [937] = {.lex_state = 1}, - [938] = {.lex_state = 1}, - [939] = {.lex_state = 1}, - [940] = {.lex_state = 1}, - [941] = {.lex_state = 1}, - [942] = {.lex_state = 1}, - [943] = {.lex_state = 1}, - [944] = {.lex_state = 1}, - [945] = {.lex_state = 1}, - [946] = {.lex_state = 1}, - [947] = {.lex_state = 1}, - [948] = {.lex_state = 1}, - [949] = {.lex_state = 1}, - [950] = {.lex_state = 1}, - [951] = {.lex_state = 1}, - [952] = {.lex_state = 1}, - [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 1}, - [956] = {.lex_state = 1}, - [957] = {.lex_state = 1}, - [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 1}, - [961] = {.lex_state = 1}, - [962] = {.lex_state = 1}, - [963] = {.lex_state = 1}, - [964] = {.lex_state = 1}, - [965] = {.lex_state = 1}, - [966] = {.lex_state = 1}, - [967] = {.lex_state = 1}, - [968] = {.lex_state = 1}, - [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, - [971] = {.lex_state = 1}, - [972] = {.lex_state = 1}, - [973] = {.lex_state = 1}, - [974] = {.lex_state = 1}, - [975] = {.lex_state = 1}, - [976] = {.lex_state = 1}, - [977] = {.lex_state = 1}, - [978] = {.lex_state = 1}, + [895] = {.lex_state = 19}, + [896] = {.lex_state = 19}, + [897] = {.lex_state = 19}, + [898] = {.lex_state = 19}, + [899] = {.lex_state = 19}, + [900] = {.lex_state = 19}, + [901] = {.lex_state = 19}, + [902] = {.lex_state = 19}, + [903] = {.lex_state = 19}, + [904] = {.lex_state = 19}, + [905] = {.lex_state = 19}, + [906] = {.lex_state = 19}, + [907] = {.lex_state = 19}, + [908] = {.lex_state = 19}, + [909] = {.lex_state = 19}, + [910] = {.lex_state = 19}, + [911] = {.lex_state = 19}, + [912] = {.lex_state = 19}, + [913] = {.lex_state = 19}, + [914] = {.lex_state = 19}, + [915] = {.lex_state = 19}, + [916] = {.lex_state = 19}, + [917] = {.lex_state = 19}, + [918] = {.lex_state = 19}, + [919] = {.lex_state = 19}, + [920] = {.lex_state = 19}, + [921] = {.lex_state = 19}, + [922] = {.lex_state = 19}, + [923] = {.lex_state = 19}, + [924] = {.lex_state = 19}, + [925] = {.lex_state = 19}, + [926] = {.lex_state = 19}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 19}, + [929] = {.lex_state = 19}, + [930] = {.lex_state = 19}, + [931] = {.lex_state = 19}, + [932] = {.lex_state = 19}, + [933] = {.lex_state = 19}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 19}, + [936] = {.lex_state = 19}, + [937] = {.lex_state = 19}, + [938] = {.lex_state = 19}, + [939] = {.lex_state = 19}, + [940] = {.lex_state = 19}, + [941] = {.lex_state = 19}, + [942] = {.lex_state = 19}, + [943] = {.lex_state = 19}, + [944] = {.lex_state = 19}, + [945] = {.lex_state = 19}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 19}, + [948] = {.lex_state = 19}, + [949] = {.lex_state = 19}, + [950] = {.lex_state = 19}, + [951] = {.lex_state = 19}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 19}, + [955] = {.lex_state = 19}, + [956] = {.lex_state = 19}, + [957] = {.lex_state = 19}, + [958] = {.lex_state = 19}, + [959] = {.lex_state = 19}, + [960] = {.lex_state = 19}, + [961] = {.lex_state = 19}, + [962] = {.lex_state = 19}, + [963] = {.lex_state = 19}, + [964] = {.lex_state = 19}, + [965] = {.lex_state = 19}, + [966] = {.lex_state = 19}, + [967] = {.lex_state = 19}, + [968] = {.lex_state = 19}, + [969] = {.lex_state = 19}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 19}, + [972] = {.lex_state = 19}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 19}, + [975] = {.lex_state = 19}, + [976] = {.lex_state = 19}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 19}, [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, + [981] = {.lex_state = 19}, [982] = {.lex_state = 19}, [983] = {.lex_state = 19}, [984] = {.lex_state = 19}, @@ -4421,7 +4289,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [988] = {.lex_state = 19}, [989] = {.lex_state = 19}, [990] = {.lex_state = 19}, - [991] = {.lex_state = 19}, + [991] = {.lex_state = 0}, [992] = {.lex_state = 19}, [993] = {.lex_state = 19}, [994] = {.lex_state = 19}, @@ -4443,7 +4311,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1010] = {.lex_state = 19}, [1011] = {.lex_state = 19}, [1012] = {.lex_state = 19}, - [1013] = {.lex_state = 19}, + [1013] = {.lex_state = 0}, [1014] = {.lex_state = 19}, [1015] = {.lex_state = 19}, [1016] = {.lex_state = 19}, @@ -4463,33 +4331,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1030] = {.lex_state = 19}, [1031] = {.lex_state = 19}, [1032] = {.lex_state = 19}, - [1033] = {.lex_state = 0}, + [1033] = {.lex_state = 19}, [1034] = {.lex_state = 19}, [1035] = {.lex_state = 19}, [1036] = {.lex_state = 19}, [1037] = {.lex_state = 19}, [1038] = {.lex_state = 19}, [1039] = {.lex_state = 19}, - [1040] = {.lex_state = 0}, + [1040] = {.lex_state = 19}, [1041] = {.lex_state = 19}, [1042] = {.lex_state = 19}, [1043] = {.lex_state = 19}, - [1044] = {.lex_state = 0}, + [1044] = {.lex_state = 19}, [1045] = {.lex_state = 19}, [1046] = {.lex_state = 19}, - [1047] = {.lex_state = 19}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 19}, [1049] = {.lex_state = 19}, [1050] = {.lex_state = 19}, [1051] = {.lex_state = 19}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, + [1052] = {.lex_state = 19}, + [1053] = {.lex_state = 19}, + [1054] = {.lex_state = 19}, + [1055] = {.lex_state = 19}, + [1056] = {.lex_state = 19}, + [1057] = {.lex_state = 19}, + [1058] = {.lex_state = 19}, + [1059] = {.lex_state = 19}, [1060] = {.lex_state = 19}, [1061] = {.lex_state = 19}, [1062] = {.lex_state = 19}, @@ -4501,8 +4369,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1068] = {.lex_state = 19}, [1069] = {.lex_state = 19}, [1070] = {.lex_state = 19}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, + [1071] = {.lex_state = 19}, + [1072] = {.lex_state = 19}, [1073] = {.lex_state = 19}, [1074] = {.lex_state = 19}, [1075] = {.lex_state = 19}, @@ -4510,7 +4378,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 19}, [1078] = {.lex_state = 19}, [1079] = {.lex_state = 19}, - [1080] = {.lex_state = 19}, + [1080] = {.lex_state = 0}, [1081] = {.lex_state = 19}, [1082] = {.lex_state = 19}, [1083] = {.lex_state = 19}, @@ -4520,7 +4388,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1087] = {.lex_state = 19}, [1088] = {.lex_state = 19}, [1089] = {.lex_state = 19}, - [1090] = {.lex_state = 0}, + [1090] = {.lex_state = 19}, [1091] = {.lex_state = 19}, [1092] = {.lex_state = 19}, [1093] = {.lex_state = 19}, @@ -4549,14 +4417,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1116] = {.lex_state = 19}, [1117] = {.lex_state = 19}, [1118] = {.lex_state = 19}, - [1119] = {.lex_state = 0}, + [1119] = {.lex_state = 19}, [1120] = {.lex_state = 19}, [1121] = {.lex_state = 19}, [1122] = {.lex_state = 19}, [1123] = {.lex_state = 19}, [1124] = {.lex_state = 19}, [1125] = {.lex_state = 19}, - [1126] = {.lex_state = 0}, + [1126] = {.lex_state = 19}, [1127] = {.lex_state = 19}, [1128] = {.lex_state = 19}, [1129] = {.lex_state = 19}, @@ -4567,124 +4435,6 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 19}, [1135] = {.lex_state = 19}, [1136] = {.lex_state = 19}, - [1137] = {.lex_state = 19}, - [1138] = {.lex_state = 19}, - [1139] = {.lex_state = 19}, - [1140] = {.lex_state = 19}, - [1141] = {.lex_state = 19}, - [1142] = {.lex_state = 19}, - [1143] = {.lex_state = 19}, - [1144] = {.lex_state = 19}, - [1145] = {.lex_state = 19}, - [1146] = {.lex_state = 19}, - [1147] = {.lex_state = 19}, - [1148] = {.lex_state = 19}, - [1149] = {.lex_state = 19}, - [1150] = {.lex_state = 19}, - [1151] = {.lex_state = 19}, - [1152] = {.lex_state = 19}, - [1153] = {.lex_state = 19}, - [1154] = {.lex_state = 19}, - [1155] = {.lex_state = 19}, - [1156] = {.lex_state = 19}, - [1157] = {.lex_state = 19}, - [1158] = {.lex_state = 19}, - [1159] = {.lex_state = 19}, - [1160] = {.lex_state = 19}, - [1161] = {.lex_state = 19}, - [1162] = {.lex_state = 19}, - [1163] = {.lex_state = 19}, - [1164] = {.lex_state = 19}, - [1165] = {.lex_state = 19}, - [1166] = {.lex_state = 19}, - [1167] = {.lex_state = 19}, - [1168] = {.lex_state = 19}, - [1169] = {.lex_state = 19}, - [1170] = {.lex_state = 19}, - [1171] = {.lex_state = 19}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 19}, - [1174] = {.lex_state = 19}, - [1175] = {.lex_state = 19}, - [1176] = {.lex_state = 19}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 19}, - [1179] = {.lex_state = 19}, - [1180] = {.lex_state = 19}, - [1181] = {.lex_state = 19}, - [1182] = {.lex_state = 19}, - [1183] = {.lex_state = 19}, - [1184] = {.lex_state = 19}, - [1185] = {.lex_state = 19}, - [1186] = {.lex_state = 19}, - [1187] = {.lex_state = 19}, - [1188] = {.lex_state = 19}, - [1189] = {.lex_state = 19}, - [1190] = {.lex_state = 19}, - [1191] = {.lex_state = 19}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 19}, - [1194] = {.lex_state = 19}, - [1195] = {.lex_state = 19}, - [1196] = {.lex_state = 19}, - [1197] = {.lex_state = 19}, - [1198] = {.lex_state = 19}, - [1199] = {.lex_state = 19}, - [1200] = {.lex_state = 19}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 19}, - [1203] = {.lex_state = 19}, - [1204] = {.lex_state = 19}, - [1205] = {.lex_state = 19}, - [1206] = {.lex_state = 19}, - [1207] = {.lex_state = 19}, - [1208] = {.lex_state = 19}, - [1209] = {.lex_state = 19}, - [1210] = {.lex_state = 19}, - [1211] = {.lex_state = 19}, - [1212] = {.lex_state = 19}, - [1213] = {.lex_state = 19}, - [1214] = {.lex_state = 19}, - [1215] = {.lex_state = 19}, - [1216] = {.lex_state = 19}, - [1217] = {.lex_state = 19}, - [1218] = {.lex_state = 19}, - [1219] = {.lex_state = 19}, - [1220] = {.lex_state = 19}, - [1221] = {.lex_state = 19}, - [1222] = {.lex_state = 19}, - [1223] = {.lex_state = 19}, - [1224] = {.lex_state = 19}, - [1225] = {.lex_state = 19}, - [1226] = {.lex_state = 19}, - [1227] = {.lex_state = 19}, - [1228] = {.lex_state = 19}, - [1229] = {.lex_state = 19}, - [1230] = {.lex_state = 19}, - [1231] = {.lex_state = 19}, - [1232] = {.lex_state = 19}, - [1233] = {.lex_state = 19}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 19}, - [1236] = {.lex_state = 19}, - [1237] = {.lex_state = 19}, - [1238] = {.lex_state = 19}, - [1239] = {.lex_state = 19}, - [1240] = {.lex_state = 19}, - [1241] = {.lex_state = 19}, - [1242] = {.lex_state = 19}, - [1243] = {.lex_state = 19}, - [1244] = {.lex_state = 19}, - [1245] = {.lex_state = 19}, - [1246] = {.lex_state = 19}, - [1247] = {.lex_state = 19}, - [1248] = {.lex_state = 19}, - [1249] = {.lex_state = 19}, - [1250] = {.lex_state = 19}, - [1251] = {.lex_state = 19}, - [1252] = {.lex_state = 19}, - [1253] = {.lex_state = 19}, - [1254] = {.lex_state = 19}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4706,6 +4456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -4741,7 +4492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1), [anon_sym_insert] = ACTIONS(1), [anon_sym_into] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_table] = ACTIONS(1), [anon_sym_assert] = ACTIONS(1), @@ -4776,41 +4526,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(1), }, [1] = { - [sym_root] = STATE(1177), - [sym_block] = STATE(227), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(227), - [aux_sym_block_repeat1] = STATE(226), + [sym_root] = STATE(980), + [sym_block] = STATE(979), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), @@ -4821,19 +4570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -4868,41 +4617,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [2] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(845), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(846), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [sym_block] = STATE(398), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(759), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(758), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [ts_builtin_sym_end] = ACTIONS(51), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), @@ -4919,36 +4668,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(67), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(69), [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -4983,41 +4732,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(109), }, [3] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(736), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(738), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), + [sym_block] = STATE(398), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(570), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(569), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), [ts_builtin_sym_end] = ACTIONS(51), [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), @@ -5034,35 +4783,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -5097,41 +4846,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [4] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(789), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(790), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), + [sym_block] = STATE(398), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(722), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(723), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), [ts_builtin_sym_end] = ACTIONS(51), [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), @@ -5146,36 +4895,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(147), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(149), [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(175), [anon_sym_assert] = ACTIONS(177), @@ -5210,45 +4959,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(177), }, [5] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(660), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(650), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), + [sym_block] = STATE(477), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(744), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(745), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), [ts_builtin_sym_end] = ACTIONS(51), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(51), [anon_sym_SEMI] = ACTIONS(51), [anon_sym_LPAREN] = ACTIONS(9), @@ -5261,22 +5010,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(51), + [anon_sym_async] = ACTIONS(181), [anon_sym_COLON] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), [anon_sym_match] = ACTIONS(185), [anon_sym_EQ_GT] = ACTIONS(187), [anon_sym_while] = ACTIONS(189), @@ -5288,192 +5038,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reduce] = ACTIONS(201), [anon_sym_select] = ACTIONS(203), [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [6] = { - [sym_statement] = STATE(6), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(215), + [sym_statement] = STATE(9), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(238), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(241), - [anon_sym_EQ_GT] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_for] = ACTIONS(250), - [anon_sym_transform] = ACTIONS(253), - [anon_sym_filter] = ACTIONS(256), - [anon_sym_find] = ACTIONS(259), - [anon_sym_remove] = ACTIONS(262), - [anon_sym_reduce] = ACTIONS(265), - [anon_sym_select] = ACTIONS(268), - [anon_sym_insert] = ACTIONS(271), - [anon_sym_async] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(280), - [anon_sym_assert] = ACTIONS(283), - [anon_sym_assert_equal] = ACTIONS(283), - [anon_sym_download] = ACTIONS(283), - [anon_sym_help] = ACTIONS(283), - [anon_sym_length] = ACTIONS(283), - [anon_sym_output] = ACTIONS(283), - [anon_sym_output_error] = ACTIONS(283), - [anon_sym_type] = ACTIONS(283), - [anon_sym_append] = ACTIONS(283), - [anon_sym_metadata] = ACTIONS(283), - [anon_sym_move] = ACTIONS(283), - [anon_sym_read] = ACTIONS(283), - [anon_sym_workdir] = ACTIONS(283), - [anon_sym_write] = ACTIONS(283), - [anon_sym_from_json] = ACTIONS(283), - [anon_sym_to_json] = ACTIONS(283), - [anon_sym_to_string] = ACTIONS(283), - [anon_sym_to_float] = ACTIONS(283), - [anon_sym_bash] = ACTIONS(283), - [anon_sym_fish] = ACTIONS(283), - [anon_sym_raw] = ACTIONS(283), - [anon_sym_sh] = ACTIONS(283), - [anon_sym_zsh] = ACTIONS(283), - [anon_sym_random] = ACTIONS(283), - [anon_sym_random_boolean] = ACTIONS(283), - [anon_sym_random_float] = ACTIONS(283), - [anon_sym_random_integer] = ACTIONS(283), - [anon_sym_columns] = ACTIONS(283), - [anon_sym_rows] = ACTIONS(283), - [anon_sym_reverse] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(211), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(79), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [7] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), + [sym_block] = STATE(477), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(612), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(611), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(286), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(51), [anon_sym_SEMI] = ACTIONS(51), [anon_sym_LPAREN] = ACTIONS(9), @@ -5486,216 +5235,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [8] = { - [sym_statement] = STATE(6), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(6), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(343), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(346), - [anon_sym_EQ_GT] = ACTIONS(349), - [anon_sym_while] = ACTIONS(352), - [anon_sym_for] = ACTIONS(355), - [anon_sym_transform] = ACTIONS(358), - [anon_sym_filter] = ACTIONS(361), - [anon_sym_find] = ACTIONS(364), - [anon_sym_remove] = ACTIONS(367), - [anon_sym_reduce] = ACTIONS(370), - [anon_sym_select] = ACTIONS(373), - [anon_sym_insert] = ACTIONS(376), - [anon_sym_async] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(385), - [anon_sym_assert] = ACTIONS(388), - [anon_sym_assert_equal] = ACTIONS(388), - [anon_sym_download] = ACTIONS(388), - [anon_sym_help] = ACTIONS(388), - [anon_sym_length] = ACTIONS(388), - [anon_sym_output] = ACTIONS(388), - [anon_sym_output_error] = ACTIONS(388), - [anon_sym_type] = ACTIONS(388), - [anon_sym_append] = ACTIONS(388), - [anon_sym_metadata] = ACTIONS(388), - [anon_sym_move] = ACTIONS(388), - [anon_sym_read] = ACTIONS(388), - [anon_sym_workdir] = ACTIONS(388), - [anon_sym_write] = ACTIONS(388), - [anon_sym_from_json] = ACTIONS(388), - [anon_sym_to_json] = ACTIONS(388), - [anon_sym_to_string] = ACTIONS(388), - [anon_sym_to_float] = ACTIONS(388), - [anon_sym_bash] = ACTIONS(388), - [anon_sym_fish] = ACTIONS(388), - [anon_sym_raw] = ACTIONS(388), - [anon_sym_sh] = ACTIONS(388), - [anon_sym_zsh] = ACTIONS(388), - [anon_sym_random] = ACTIONS(388), - [anon_sym_random_boolean] = ACTIONS(388), - [anon_sym_random_float] = ACTIONS(388), - [anon_sym_random_integer] = ACTIONS(388), - [anon_sym_columns] = ACTIONS(388), - [anon_sym_rows] = ACTIONS(388), - [anon_sym_reverse] = ACTIONS(388), - }, - [9] = { - [sym_block] = STATE(392), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(773), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(774), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), + [sym_block] = STATE(398), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(654), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(649), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(391), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_RBRACE] = ACTIONS(51), @@ -5708,146 +5345,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [9] = { + [sym_statement] = STATE(9), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(285), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_async] = ACTIONS(306), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(311), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(317), + [anon_sym_while] = ACTIONS(320), + [anon_sym_for] = ACTIONS(323), + [anon_sym_transform] = ACTIONS(326), + [anon_sym_filter] = ACTIONS(329), + [anon_sym_find] = ACTIONS(332), + [anon_sym_remove] = ACTIONS(335), + [anon_sym_reduce] = ACTIONS(338), + [anon_sym_select] = ACTIONS(341), + [anon_sym_insert] = ACTIONS(344), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(350), + [anon_sym_assert] = ACTIONS(353), + [anon_sym_assert_equal] = ACTIONS(353), + [anon_sym_download] = ACTIONS(353), + [anon_sym_help] = ACTIONS(353), + [anon_sym_length] = ACTIONS(353), + [anon_sym_output] = ACTIONS(353), + [anon_sym_output_error] = ACTIONS(353), + [anon_sym_type] = ACTIONS(353), + [anon_sym_append] = ACTIONS(353), + [anon_sym_metadata] = ACTIONS(353), + [anon_sym_move] = ACTIONS(353), + [anon_sym_read] = ACTIONS(353), + [anon_sym_workdir] = ACTIONS(353), + [anon_sym_write] = ACTIONS(353), + [anon_sym_from_json] = ACTIONS(353), + [anon_sym_to_json] = ACTIONS(353), + [anon_sym_to_string] = ACTIONS(353), + [anon_sym_to_float] = ACTIONS(353), + [anon_sym_bash] = ACTIONS(353), + [anon_sym_fish] = ACTIONS(353), + [anon_sym_raw] = ACTIONS(353), + [anon_sym_sh] = ACTIONS(353), + [anon_sym_zsh] = ACTIONS(353), + [anon_sym_random] = ACTIONS(353), + [anon_sym_random_boolean] = ACTIONS(353), + [anon_sym_random_float] = ACTIONS(353), + [anon_sym_random_integer] = ACTIONS(353), + [anon_sym_columns] = ACTIONS(353), + [anon_sym_rows] = ACTIONS(353), + [anon_sym_reverse] = ACTIONS(353), }, [10] = { - [sym_block] = STATE(576), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(736), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(738), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_statement] = STATE(14), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(51), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(211), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), [sym_string] = ACTIONS(61), [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(117), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -5882,156 +5631,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [11] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(733), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(734), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), + [sym_block] = STATE(671), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(654), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(649), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(451), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(51), - [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_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(51), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [12] = { - [sym_block] = STATE(576), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(773), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(774), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_RBRACE] = ACTIONS(51), [anon_sym_SEMI] = ACTIONS(51), [anon_sym_LPAREN] = ACTIONS(57), @@ -6041,770 +5679,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), [anon_sym_elseif] = ACTIONS(51), - [anon_sym_else] = ACTIONS(79), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [12] = { + [sym_block] = STATE(671), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(570), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(569), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(51), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_elseif] = ACTIONS(51), + [anon_sym_else] = ACTIONS(81), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [13] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(505), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(508), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(511), - [anon_sym_EQ_GT] = ACTIONS(514), - [anon_sym_while] = ACTIONS(517), - [anon_sym_for] = ACTIONS(520), - [anon_sym_transform] = ACTIONS(523), - [anon_sym_filter] = ACTIONS(526), - [anon_sym_find] = ACTIONS(529), - [anon_sym_remove] = ACTIONS(532), - [anon_sym_reduce] = ACTIONS(535), - [anon_sym_select] = ACTIONS(538), - [anon_sym_insert] = ACTIONS(541), - [anon_sym_async] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(547), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_assert_equal] = ACTIONS(550), - [anon_sym_download] = ACTIONS(550), - [anon_sym_help] = ACTIONS(550), - [anon_sym_length] = ACTIONS(550), - [anon_sym_output] = ACTIONS(550), - [anon_sym_output_error] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_append] = ACTIONS(550), - [anon_sym_metadata] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_read] = ACTIONS(550), - [anon_sym_workdir] = ACTIONS(550), - [anon_sym_write] = ACTIONS(550), - [anon_sym_from_json] = ACTIONS(550), - [anon_sym_to_json] = ACTIONS(550), - [anon_sym_to_string] = ACTIONS(550), - [anon_sym_to_float] = ACTIONS(550), - [anon_sym_bash] = ACTIONS(550), - [anon_sym_fish] = ACTIONS(550), - [anon_sym_raw] = ACTIONS(550), - [anon_sym_sh] = ACTIONS(550), - [anon_sym_zsh] = ACTIONS(550), - [anon_sym_random] = ACTIONS(550), - [anon_sym_random_boolean] = ACTIONS(550), - [anon_sym_random_float] = ACTIONS(550), - [anon_sym_random_integer] = ACTIONS(550), - [anon_sym_columns] = ACTIONS(550), - [anon_sym_rows] = ACTIONS(550), - [anon_sym_reverse] = ACTIONS(550), - }, - [14] = { - [sym_statement] = STATE(13), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(553), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(556), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(559), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_while] = ACTIONS(565), - [anon_sym_for] = ACTIONS(568), - [anon_sym_transform] = ACTIONS(571), - [anon_sym_filter] = ACTIONS(574), - [anon_sym_find] = ACTIONS(577), - [anon_sym_remove] = ACTIONS(580), - [anon_sym_reduce] = ACTIONS(583), - [anon_sym_select] = ACTIONS(586), - [anon_sym_insert] = ACTIONS(589), - [anon_sym_async] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(595), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_assert_equal] = ACTIONS(598), - [anon_sym_download] = ACTIONS(598), - [anon_sym_help] = ACTIONS(598), - [anon_sym_length] = ACTIONS(598), - [anon_sym_output] = ACTIONS(598), - [anon_sym_output_error] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_append] = ACTIONS(598), - [anon_sym_metadata] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_read] = ACTIONS(598), - [anon_sym_workdir] = ACTIONS(598), - [anon_sym_write] = ACTIONS(598), - [anon_sym_from_json] = ACTIONS(598), - [anon_sym_to_json] = ACTIONS(598), - [anon_sym_to_string] = ACTIONS(598), - [anon_sym_to_float] = ACTIONS(598), - [anon_sym_bash] = ACTIONS(598), - [anon_sym_fish] = ACTIONS(598), - [anon_sym_raw] = ACTIONS(598), - [anon_sym_sh] = ACTIONS(598), - [anon_sym_zsh] = ACTIONS(598), - [anon_sym_random] = ACTIONS(598), - [anon_sym_random_boolean] = ACTIONS(598), - [anon_sym_random_float] = ACTIONS(598), - [anon_sym_random_integer] = ACTIONS(598), - [anon_sym_columns] = ACTIONS(598), - [anon_sym_rows] = ACTIONS(598), - [anon_sym_reverse] = ACTIONS(598), - }, - [15] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(601), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(604), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(607), - [anon_sym_EQ_GT] = ACTIONS(610), - [anon_sym_while] = ACTIONS(613), - [anon_sym_for] = ACTIONS(616), - [anon_sym_transform] = ACTIONS(619), - [anon_sym_filter] = ACTIONS(622), - [anon_sym_find] = ACTIONS(625), - [anon_sym_remove] = ACTIONS(628), - [anon_sym_reduce] = ACTIONS(631), - [anon_sym_select] = ACTIONS(634), - [anon_sym_insert] = ACTIONS(637), - [anon_sym_async] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(643), - [anon_sym_assert] = ACTIONS(646), - [anon_sym_assert_equal] = ACTIONS(646), - [anon_sym_download] = ACTIONS(646), - [anon_sym_help] = ACTIONS(646), - [anon_sym_length] = ACTIONS(646), - [anon_sym_output] = ACTIONS(646), - [anon_sym_output_error] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_append] = ACTIONS(646), - [anon_sym_metadata] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_read] = ACTIONS(646), - [anon_sym_workdir] = ACTIONS(646), - [anon_sym_write] = ACTIONS(646), - [anon_sym_from_json] = ACTIONS(646), - [anon_sym_to_json] = ACTIONS(646), - [anon_sym_to_string] = ACTIONS(646), - [anon_sym_to_float] = ACTIONS(646), - [anon_sym_bash] = ACTIONS(646), - [anon_sym_fish] = ACTIONS(646), - [anon_sym_raw] = ACTIONS(646), - [anon_sym_sh] = ACTIONS(646), - [anon_sym_zsh] = ACTIONS(646), - [anon_sym_random] = ACTIONS(646), - [anon_sym_random_boolean] = ACTIONS(646), - [anon_sym_random_float] = ACTIONS(646), - [anon_sym_random_integer] = ACTIONS(646), - [anon_sym_columns] = ACTIONS(646), - [anon_sym_rows] = ACTIONS(646), - [anon_sym_reverse] = ACTIONS(646), - }, - [16] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(343), - [anon_sym_match] = ACTIONS(670), - [anon_sym_EQ_GT] = ACTIONS(673), - [anon_sym_while] = ACTIONS(676), - [anon_sym_for] = ACTIONS(679), - [anon_sym_transform] = ACTIONS(682), - [anon_sym_filter] = ACTIONS(685), - [anon_sym_find] = ACTIONS(688), - [anon_sym_remove] = ACTIONS(691), - [anon_sym_reduce] = ACTIONS(694), - [anon_sym_select] = ACTIONS(697), - [anon_sym_insert] = ACTIONS(700), - [anon_sym_async] = ACTIONS(703), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(706), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_assert_equal] = ACTIONS(709), - [anon_sym_download] = ACTIONS(709), - [anon_sym_help] = ACTIONS(709), - [anon_sym_length] = ACTIONS(709), - [anon_sym_output] = ACTIONS(709), - [anon_sym_output_error] = ACTIONS(709), - [anon_sym_type] = ACTIONS(709), - [anon_sym_append] = ACTIONS(709), - [anon_sym_metadata] = ACTIONS(709), - [anon_sym_move] = ACTIONS(709), - [anon_sym_read] = ACTIONS(709), - [anon_sym_workdir] = ACTIONS(709), - [anon_sym_write] = ACTIONS(709), - [anon_sym_from_json] = ACTIONS(709), - [anon_sym_to_json] = ACTIONS(709), - [anon_sym_to_string] = ACTIONS(709), - [anon_sym_to_float] = ACTIONS(709), - [anon_sym_bash] = ACTIONS(709), - [anon_sym_fish] = ACTIONS(709), - [anon_sym_raw] = ACTIONS(709), - [anon_sym_sh] = ACTIONS(709), - [anon_sym_zsh] = ACTIONS(709), - [anon_sym_random] = ACTIONS(709), - [anon_sym_random_boolean] = ACTIONS(709), - [anon_sym_random_float] = ACTIONS(709), - [anon_sym_random_integer] = ACTIONS(709), - [anon_sym_columns] = ACTIONS(709), - [anon_sym_rows] = ACTIONS(709), - [anon_sym_reverse] = ACTIONS(709), - }, - [17] = { - [sym_statement] = STATE(17), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(17), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(712), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(715), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(721), - [anon_sym_while] = ACTIONS(724), - [anon_sym_for] = ACTIONS(727), - [anon_sym_transform] = ACTIONS(730), - [anon_sym_filter] = ACTIONS(733), - [anon_sym_find] = ACTIONS(736), - [anon_sym_remove] = ACTIONS(739), - [anon_sym_reduce] = ACTIONS(742), - [anon_sym_select] = ACTIONS(745), - [anon_sym_insert] = ACTIONS(748), - [anon_sym_async] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(754), - [anon_sym_assert] = ACTIONS(757), - [anon_sym_assert_equal] = ACTIONS(757), - [anon_sym_download] = ACTIONS(757), - [anon_sym_help] = ACTIONS(757), - [anon_sym_length] = ACTIONS(757), - [anon_sym_output] = ACTIONS(757), - [anon_sym_output_error] = ACTIONS(757), - [anon_sym_type] = ACTIONS(757), - [anon_sym_append] = ACTIONS(757), - [anon_sym_metadata] = ACTIONS(757), - [anon_sym_move] = ACTIONS(757), - [anon_sym_read] = ACTIONS(757), - [anon_sym_workdir] = ACTIONS(757), - [anon_sym_write] = ACTIONS(757), - [anon_sym_from_json] = ACTIONS(757), - [anon_sym_to_json] = ACTIONS(757), - [anon_sym_to_string] = ACTIONS(757), - [anon_sym_to_float] = ACTIONS(757), - [anon_sym_bash] = ACTIONS(757), - [anon_sym_fish] = ACTIONS(757), - [anon_sym_raw] = ACTIONS(757), - [anon_sym_sh] = ACTIONS(757), - [anon_sym_zsh] = ACTIONS(757), - [anon_sym_random] = ACTIONS(757), - [anon_sym_random_boolean] = ACTIONS(757), - [anon_sym_random_float] = ACTIONS(757), - [anon_sym_random_integer] = ACTIONS(757), - [anon_sym_columns] = ACTIONS(757), - [anon_sym_rows] = ACTIONS(757), - [anon_sym_reverse] = ACTIONS(757), - }, - [18] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(760), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(238), - [anon_sym_match] = ACTIONS(781), - [anon_sym_EQ_GT] = ACTIONS(784), - [anon_sym_while] = ACTIONS(787), - [anon_sym_for] = ACTIONS(790), - [anon_sym_transform] = ACTIONS(793), - [anon_sym_filter] = ACTIONS(796), - [anon_sym_find] = ACTIONS(799), - [anon_sym_remove] = ACTIONS(802), - [anon_sym_reduce] = ACTIONS(805), - [anon_sym_select] = ACTIONS(808), - [anon_sym_insert] = ACTIONS(811), - [anon_sym_async] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(820), - [anon_sym_assert_equal] = ACTIONS(820), - [anon_sym_download] = ACTIONS(820), - [anon_sym_help] = ACTIONS(820), - [anon_sym_length] = ACTIONS(820), - [anon_sym_output] = ACTIONS(820), - [anon_sym_output_error] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_append] = ACTIONS(820), - [anon_sym_metadata] = ACTIONS(820), - [anon_sym_move] = ACTIONS(820), - [anon_sym_read] = ACTIONS(820), - [anon_sym_workdir] = ACTIONS(820), - [anon_sym_write] = ACTIONS(820), - [anon_sym_from_json] = ACTIONS(820), - [anon_sym_to_json] = ACTIONS(820), - [anon_sym_to_string] = ACTIONS(820), - [anon_sym_to_float] = ACTIONS(820), - [anon_sym_bash] = ACTIONS(820), - [anon_sym_fish] = ACTIONS(820), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_sh] = ACTIONS(820), - [anon_sym_zsh] = ACTIONS(820), - [anon_sym_random] = ACTIONS(820), - [anon_sym_random_boolean] = ACTIONS(820), - [anon_sym_random_float] = ACTIONS(820), - [anon_sym_random_integer] = ACTIONS(820), - [anon_sym_columns] = ACTIONS(820), - [anon_sym_rows] = ACTIONS(820), - [anon_sym_reverse] = ACTIONS(820), - }, - [19] = { - [sym_block] = STATE(463), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), + [sym_block] = STATE(477), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(668), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(669), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(823), + [sym_identifier] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(51), [anon_sym_SEMI] = ACTIONS(51), [anon_sym_LPAREN] = ACTIONS(9), @@ -6815,1324 +5902,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(51), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), }, - [20] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(51), - [sym_identifier] = ACTIONS(5), + [14] = { + [sym_statement] = STATE(14), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(432), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_async] = ACTIONS(435), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(438), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(441), + [anon_sym_EQ_GT] = ACTIONS(444), + [anon_sym_while] = ACTIONS(447), + [anon_sym_for] = ACTIONS(450), + [anon_sym_transform] = ACTIONS(453), + [anon_sym_filter] = ACTIONS(456), + [anon_sym_find] = ACTIONS(459), + [anon_sym_remove] = ACTIONS(462), + [anon_sym_reduce] = ACTIONS(465), + [anon_sym_select] = ACTIONS(468), + [anon_sym_insert] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(477), + [anon_sym_assert_equal] = ACTIONS(477), + [anon_sym_download] = ACTIONS(477), + [anon_sym_help] = ACTIONS(477), + [anon_sym_length] = ACTIONS(477), + [anon_sym_output] = ACTIONS(477), + [anon_sym_output_error] = ACTIONS(477), + [anon_sym_type] = ACTIONS(477), + [anon_sym_append] = ACTIONS(477), + [anon_sym_metadata] = ACTIONS(477), + [anon_sym_move] = ACTIONS(477), + [anon_sym_read] = ACTIONS(477), + [anon_sym_workdir] = ACTIONS(477), + [anon_sym_write] = ACTIONS(477), + [anon_sym_from_json] = ACTIONS(477), + [anon_sym_to_json] = ACTIONS(477), + [anon_sym_to_string] = ACTIONS(477), + [anon_sym_to_float] = ACTIONS(477), + [anon_sym_bash] = ACTIONS(477), + [anon_sym_fish] = ACTIONS(477), + [anon_sym_raw] = ACTIONS(477), + [anon_sym_sh] = ACTIONS(477), + [anon_sym_zsh] = ACTIONS(477), + [anon_sym_random] = ACTIONS(477), + [anon_sym_random_boolean] = ACTIONS(477), + [anon_sym_random_float] = ACTIONS(477), + [anon_sym_random_integer] = ACTIONS(477), + [anon_sym_columns] = ACTIONS(477), + [anon_sym_rows] = ACTIONS(477), + [anon_sym_reverse] = ACTIONS(477), + }, + [15] = { + [sym_statement] = STATE(16), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(211), [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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [21] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(673), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(706), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_assert_equal] = ACTIONS(709), - [anon_sym_download] = ACTIONS(709), - [anon_sym_help] = ACTIONS(709), - [anon_sym_length] = ACTIONS(709), - [anon_sym_output] = ACTIONS(709), - [anon_sym_output_error] = ACTIONS(709), - [anon_sym_type] = ACTIONS(709), - [anon_sym_append] = ACTIONS(709), - [anon_sym_metadata] = ACTIONS(709), - [anon_sym_move] = ACTIONS(709), - [anon_sym_read] = ACTIONS(709), - [anon_sym_workdir] = ACTIONS(709), - [anon_sym_write] = ACTIONS(709), - [anon_sym_from_json] = ACTIONS(709), - [anon_sym_to_json] = ACTIONS(709), - [anon_sym_to_string] = ACTIONS(709), - [anon_sym_to_float] = ACTIONS(709), - [anon_sym_bash] = ACTIONS(709), - [anon_sym_fish] = ACTIONS(709), - [anon_sym_raw] = ACTIONS(709), - [anon_sym_sh] = ACTIONS(709), - [anon_sym_zsh] = ACTIONS(709), - [anon_sym_random] = ACTIONS(709), - [anon_sym_random_boolean] = ACTIONS(709), - [anon_sym_random_float] = ACTIONS(709), - [anon_sym_random_integer] = ACTIONS(709), - [anon_sym_columns] = ACTIONS(709), - [anon_sym_rows] = ACTIONS(709), - [anon_sym_reverse] = ACTIONS(709), - }, - [22] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(51), - [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_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [23] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(869), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(872), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(878), - [anon_sym_while] = ACTIONS(881), - [anon_sym_for] = ACTIONS(884), - [anon_sym_transform] = ACTIONS(887), - [anon_sym_filter] = ACTIONS(890), - [anon_sym_find] = ACTIONS(893), - [anon_sym_remove] = ACTIONS(896), - [anon_sym_reduce] = ACTIONS(899), - [anon_sym_select] = ACTIONS(902), - [anon_sym_insert] = ACTIONS(905), - [anon_sym_async] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(914), - [anon_sym_assert_equal] = ACTIONS(914), - [anon_sym_download] = ACTIONS(914), - [anon_sym_help] = ACTIONS(914), - [anon_sym_length] = ACTIONS(914), - [anon_sym_output] = ACTIONS(914), - [anon_sym_output_error] = ACTIONS(914), - [anon_sym_type] = ACTIONS(914), - [anon_sym_append] = ACTIONS(914), - [anon_sym_metadata] = ACTIONS(914), - [anon_sym_move] = ACTIONS(914), - [anon_sym_read] = ACTIONS(914), - [anon_sym_workdir] = ACTIONS(914), - [anon_sym_write] = ACTIONS(914), - [anon_sym_from_json] = ACTIONS(914), - [anon_sym_to_json] = ACTIONS(914), - [anon_sym_to_string] = ACTIONS(914), - [anon_sym_to_float] = ACTIONS(914), - [anon_sym_bash] = ACTIONS(914), - [anon_sym_fish] = ACTIONS(914), - [anon_sym_raw] = ACTIONS(914), - [anon_sym_sh] = ACTIONS(914), - [anon_sym_zsh] = ACTIONS(914), - [anon_sym_random] = ACTIONS(914), - [anon_sym_random_boolean] = ACTIONS(914), - [anon_sym_random_float] = ACTIONS(914), - [anon_sym_random_integer] = ACTIONS(914), - [anon_sym_columns] = ACTIONS(914), - [anon_sym_rows] = ACTIONS(914), - [anon_sym_reverse] = ACTIONS(914), - }, - [24] = { - [sym_statement] = STATE(23), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(917), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(920), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_while] = ACTIONS(929), - [anon_sym_for] = ACTIONS(932), - [anon_sym_transform] = ACTIONS(935), - [anon_sym_filter] = ACTIONS(938), - [anon_sym_find] = ACTIONS(941), - [anon_sym_remove] = ACTIONS(944), - [anon_sym_reduce] = ACTIONS(947), - [anon_sym_select] = ACTIONS(950), - [anon_sym_insert] = ACTIONS(953), - [anon_sym_async] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(962), - [anon_sym_assert_equal] = ACTIONS(962), - [anon_sym_download] = ACTIONS(962), - [anon_sym_help] = ACTIONS(962), - [anon_sym_length] = ACTIONS(962), - [anon_sym_output] = ACTIONS(962), - [anon_sym_output_error] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_append] = ACTIONS(962), - [anon_sym_metadata] = ACTIONS(962), - [anon_sym_move] = ACTIONS(962), - [anon_sym_read] = ACTIONS(962), - [anon_sym_workdir] = ACTIONS(962), - [anon_sym_write] = ACTIONS(962), - [anon_sym_from_json] = ACTIONS(962), - [anon_sym_to_json] = ACTIONS(962), - [anon_sym_to_string] = ACTIONS(962), - [anon_sym_to_float] = ACTIONS(962), - [anon_sym_bash] = ACTIONS(962), - [anon_sym_fish] = ACTIONS(962), - [anon_sym_raw] = ACTIONS(962), - [anon_sym_sh] = ACTIONS(962), - [anon_sym_zsh] = ACTIONS(962), - [anon_sym_random] = ACTIONS(962), - [anon_sym_random_boolean] = ACTIONS(962), - [anon_sym_random_float] = ACTIONS(962), - [anon_sym_random_integer] = ACTIONS(962), - [anon_sym_columns] = ACTIONS(962), - [anon_sym_rows] = ACTIONS(962), - [anon_sym_reverse] = ACTIONS(962), - }, - [25] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(965), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(508), - [anon_sym_match] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_for] = ACTIONS(977), - [anon_sym_transform] = ACTIONS(980), - [anon_sym_filter] = ACTIONS(983), - [anon_sym_find] = ACTIONS(986), - [anon_sym_remove] = ACTIONS(989), - [anon_sym_reduce] = ACTIONS(992), - [anon_sym_select] = ACTIONS(995), - [anon_sym_insert] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1007), - [anon_sym_assert_equal] = ACTIONS(1007), - [anon_sym_download] = ACTIONS(1007), - [anon_sym_help] = ACTIONS(1007), - [anon_sym_length] = ACTIONS(1007), - [anon_sym_output] = ACTIONS(1007), - [anon_sym_output_error] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_append] = ACTIONS(1007), - [anon_sym_metadata] = ACTIONS(1007), - [anon_sym_move] = ACTIONS(1007), - [anon_sym_read] = ACTIONS(1007), - [anon_sym_workdir] = ACTIONS(1007), - [anon_sym_write] = ACTIONS(1007), - [anon_sym_from_json] = ACTIONS(1007), - [anon_sym_to_json] = ACTIONS(1007), - [anon_sym_to_string] = ACTIONS(1007), - [anon_sym_to_float] = ACTIONS(1007), - [anon_sym_bash] = ACTIONS(1007), - [anon_sym_fish] = ACTIONS(1007), - [anon_sym_raw] = ACTIONS(1007), - [anon_sym_sh] = ACTIONS(1007), - [anon_sym_zsh] = ACTIONS(1007), - [anon_sym_random] = ACTIONS(1007), - [anon_sym_random_boolean] = ACTIONS(1007), - [anon_sym_random_float] = ACTIONS(1007), - [anon_sym_random_integer] = ACTIONS(1007), - [anon_sym_columns] = ACTIONS(1007), - [anon_sym_rows] = ACTIONS(1007), - [anon_sym_reverse] = ACTIONS(1007), - }, - [26] = { - [sym_block] = STATE(689), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(623), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(664), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(51), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(51), - [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_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [27] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(556), - [anon_sym_match] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_transform] = ACTIONS(1025), - [anon_sym_filter] = ACTIONS(1028), - [anon_sym_find] = ACTIONS(1031), - [anon_sym_remove] = ACTIONS(1034), - [anon_sym_reduce] = ACTIONS(1037), - [anon_sym_select] = ACTIONS(1040), - [anon_sym_insert] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), - }, - [28] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(604), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_transform] = ACTIONS(1070), - [anon_sym_filter] = ACTIONS(1073), - [anon_sym_find] = ACTIONS(1076), - [anon_sym_remove] = ACTIONS(1079), - [anon_sym_reduce] = ACTIONS(1082), - [anon_sym_select] = ACTIONS(1085), - [anon_sym_insert] = ACTIONS(1088), - [anon_sym_async] = ACTIONS(1091), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1094), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_assert_equal] = ACTIONS(1097), - [anon_sym_download] = ACTIONS(1097), - [anon_sym_help] = ACTIONS(1097), - [anon_sym_length] = ACTIONS(1097), - [anon_sym_output] = ACTIONS(1097), - [anon_sym_output_error] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_append] = ACTIONS(1097), - [anon_sym_metadata] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1097), - [anon_sym_read] = ACTIONS(1097), - [anon_sym_workdir] = ACTIONS(1097), - [anon_sym_write] = ACTIONS(1097), - [anon_sym_from_json] = ACTIONS(1097), - [anon_sym_to_json] = ACTIONS(1097), - [anon_sym_to_string] = ACTIONS(1097), - [anon_sym_to_float] = ACTIONS(1097), - [anon_sym_bash] = ACTIONS(1097), - [anon_sym_fish] = ACTIONS(1097), - [anon_sym_raw] = ACTIONS(1097), - [anon_sym_sh] = ACTIONS(1097), - [anon_sym_zsh] = ACTIONS(1097), - [anon_sym_random] = ACTIONS(1097), - [anon_sym_random_boolean] = ACTIONS(1097), - [anon_sym_random_float] = ACTIONS(1097), - [anon_sym_random_integer] = ACTIONS(1097), - [anon_sym_columns] = ACTIONS(1097), - [anon_sym_rows] = ACTIONS(1097), - [anon_sym_reverse] = ACTIONS(1097), - }, - [29] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), - }, - [30] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_DOT_DOT] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(715), - [anon_sym_match] = ACTIONS(1103), - [anon_sym_EQ_GT] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_transform] = ACTIONS(1115), - [anon_sym_filter] = ACTIONS(1118), - [anon_sym_find] = ACTIONS(1121), - [anon_sym_remove] = ACTIONS(1124), - [anon_sym_reduce] = ACTIONS(1127), - [anon_sym_select] = ACTIONS(1130), - [anon_sym_insert] = ACTIONS(1133), - [anon_sym_async] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1139), - [anon_sym_assert] = ACTIONS(1142), - [anon_sym_assert_equal] = ACTIONS(1142), - [anon_sym_download] = ACTIONS(1142), - [anon_sym_help] = ACTIONS(1142), - [anon_sym_length] = ACTIONS(1142), - [anon_sym_output] = ACTIONS(1142), - [anon_sym_output_error] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_append] = ACTIONS(1142), - [anon_sym_metadata] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [anon_sym_read] = ACTIONS(1142), - [anon_sym_workdir] = ACTIONS(1142), - [anon_sym_write] = ACTIONS(1142), - [anon_sym_from_json] = ACTIONS(1142), - [anon_sym_to_json] = ACTIONS(1142), - [anon_sym_to_string] = ACTIONS(1142), - [anon_sym_to_float] = ACTIONS(1142), - [anon_sym_bash] = ACTIONS(1142), - [anon_sym_fish] = ACTIONS(1142), - [anon_sym_raw] = ACTIONS(1142), - [anon_sym_sh] = ACTIONS(1142), - [anon_sym_zsh] = ACTIONS(1142), - [anon_sym_random] = ACTIONS(1142), - [anon_sym_random_boolean] = ACTIONS(1142), - [anon_sym_random_float] = ACTIONS(1142), - [anon_sym_random_integer] = ACTIONS(1142), - [anon_sym_columns] = ACTIONS(1142), - [anon_sym_rows] = ACTIONS(1142), - [anon_sym_reverse] = ACTIONS(1142), - }, - [31] = { - [sym_statement] = STATE(18), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(18), - [sym_identifier] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), - [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_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(211), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(79), [anon_sym_match] = ACTIONS(185), [anon_sym_EQ_GT] = ACTIONS(187), [anon_sym_while] = ACTIONS(189), @@ -8144,327 +6151,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reduce] = ACTIONS(201), [anon_sym_select] = ACTIONS(203), [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, - [32] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1147), + [16] = { + [sym_statement] = STATE(16), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(482), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(920), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_transform] = ACTIONS(1162), - [anon_sym_filter] = ACTIONS(1165), - [anon_sym_find] = ACTIONS(1168), - [anon_sym_remove] = ACTIONS(1171), - [anon_sym_reduce] = ACTIONS(1174), - [anon_sym_select] = ACTIONS(1177), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_async] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(311), + [anon_sym_match] = ACTIONS(506), + [anon_sym_EQ_GT] = ACTIONS(509), + [anon_sym_while] = ACTIONS(512), + [anon_sym_for] = ACTIONS(515), + [anon_sym_transform] = ACTIONS(518), + [anon_sym_filter] = ACTIONS(521), + [anon_sym_find] = ACTIONS(524), + [anon_sym_remove] = ACTIONS(527), + [anon_sym_reduce] = ACTIONS(530), + [anon_sym_select] = ACTIONS(533), + [anon_sym_insert] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(539), + [anon_sym_assert] = ACTIONS(542), + [anon_sym_assert_equal] = ACTIONS(542), + [anon_sym_download] = ACTIONS(542), + [anon_sym_help] = ACTIONS(542), + [anon_sym_length] = ACTIONS(542), + [anon_sym_output] = ACTIONS(542), + [anon_sym_output_error] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_append] = ACTIONS(542), + [anon_sym_metadata] = ACTIONS(542), + [anon_sym_move] = ACTIONS(542), + [anon_sym_read] = ACTIONS(542), + [anon_sym_workdir] = ACTIONS(542), + [anon_sym_write] = ACTIONS(542), + [anon_sym_from_json] = ACTIONS(542), + [anon_sym_to_json] = ACTIONS(542), + [anon_sym_to_string] = ACTIONS(542), + [anon_sym_to_float] = ACTIONS(542), + [anon_sym_bash] = ACTIONS(542), + [anon_sym_fish] = ACTIONS(542), + [anon_sym_raw] = ACTIONS(542), + [anon_sym_sh] = ACTIONS(542), + [anon_sym_zsh] = ACTIONS(542), + [anon_sym_random] = ACTIONS(542), + [anon_sym_random_boolean] = ACTIONS(542), + [anon_sym_random_float] = ACTIONS(542), + [anon_sym_random_integer] = ACTIONS(542), + [anon_sym_columns] = ACTIONS(542), + [anon_sym_rows] = ACTIONS(542), + [anon_sym_reverse] = ACTIONS(542), }, - [33] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_COLON] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(236), - [anon_sym_STAR] = ACTIONS(213), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(213), - [anon_sym_EQ_EQ] = ACTIONS(213), - [anon_sym_BANG_EQ] = ACTIONS(213), - [anon_sym_AMP_AMP] = ACTIONS(213), - [anon_sym_PIPE_PIPE] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_if] = ACTIONS(872), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_transform] = ACTIONS(1207), - [anon_sym_filter] = ACTIONS(1210), - [anon_sym_find] = ACTIONS(1213), - [anon_sym_remove] = ACTIONS(1216), - [anon_sym_reduce] = ACTIONS(1219), - [anon_sym_select] = ACTIONS(1222), - [anon_sym_insert] = ACTIONS(1225), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_assert_equal] = ACTIONS(1234), - [anon_sym_download] = ACTIONS(1234), - [anon_sym_help] = ACTIONS(1234), - [anon_sym_length] = ACTIONS(1234), - [anon_sym_output] = ACTIONS(1234), - [anon_sym_output_error] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_append] = ACTIONS(1234), - [anon_sym_metadata] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_read] = ACTIONS(1234), - [anon_sym_workdir] = ACTIONS(1234), - [anon_sym_write] = ACTIONS(1234), - [anon_sym_from_json] = ACTIONS(1234), - [anon_sym_to_json] = ACTIONS(1234), - [anon_sym_to_string] = ACTIONS(1234), - [anon_sym_to_float] = ACTIONS(1234), - [anon_sym_bash] = ACTIONS(1234), - [anon_sym_fish] = ACTIONS(1234), - [anon_sym_raw] = ACTIONS(1234), - [anon_sym_sh] = ACTIONS(1234), - [anon_sym_zsh] = ACTIONS(1234), - [anon_sym_random] = ACTIONS(1234), - [anon_sym_random_boolean] = ACTIONS(1234), - [anon_sym_random_float] = ACTIONS(1234), - [anon_sym_random_integer] = ACTIONS(1234), - [anon_sym_columns] = ACTIONS(1234), - [anon_sym_rows] = ACTIONS(1234), - [anon_sym_reverse] = ACTIONS(1234), - }, - [34] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), + [17] = { + [sym_block] = STATE(477), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [ts_builtin_sym_end] = ACTIONS(51), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(51), [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(51), [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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -8498,45 +6404,1564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(49), [anon_sym_reverse] = ACTIONS(49), }, - [35] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(205), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(425), + [18] = { + [sym_statement] = STATE(18), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(18), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(567), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(283), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_async] = ACTIONS(570), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(573), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(576), + [anon_sym_EQ_GT] = ACTIONS(579), + [anon_sym_while] = ACTIONS(582), + [anon_sym_for] = ACTIONS(585), + [anon_sym_transform] = ACTIONS(588), + [anon_sym_filter] = ACTIONS(591), + [anon_sym_find] = ACTIONS(594), + [anon_sym_remove] = ACTIONS(597), + [anon_sym_reduce] = ACTIONS(600), + [anon_sym_select] = ACTIONS(603), + [anon_sym_insert] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(609), + [anon_sym_assert] = ACTIONS(612), + [anon_sym_assert_equal] = ACTIONS(612), + [anon_sym_download] = ACTIONS(612), + [anon_sym_help] = ACTIONS(612), + [anon_sym_length] = ACTIONS(612), + [anon_sym_output] = ACTIONS(612), + [anon_sym_output_error] = ACTIONS(612), + [anon_sym_type] = ACTIONS(612), + [anon_sym_append] = ACTIONS(612), + [anon_sym_metadata] = ACTIONS(612), + [anon_sym_move] = ACTIONS(612), + [anon_sym_read] = ACTIONS(612), + [anon_sym_workdir] = ACTIONS(612), + [anon_sym_write] = ACTIONS(612), + [anon_sym_from_json] = ACTIONS(612), + [anon_sym_to_json] = ACTIONS(612), + [anon_sym_to_string] = ACTIONS(612), + [anon_sym_to_float] = ACTIONS(612), + [anon_sym_bash] = ACTIONS(612), + [anon_sym_fish] = ACTIONS(612), + [anon_sym_raw] = ACTIONS(612), + [anon_sym_sh] = ACTIONS(612), + [anon_sym_zsh] = ACTIONS(612), + [anon_sym_random] = ACTIONS(612), + [anon_sym_random_boolean] = ACTIONS(612), + [anon_sym_random_float] = ACTIONS(612), + [anon_sym_random_integer] = ACTIONS(612), + [anon_sym_columns] = ACTIONS(612), + [anon_sym_rows] = ACTIONS(612), + [anon_sym_reverse] = ACTIONS(612), + }, + [19] = { + [sym_statement] = STATE(18), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(18), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(151), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [20] = { + [sym_statement] = STATE(23), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(211), + [anon_sym_COMMA] = ACTIONS(211), + [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_RBRACK] = ACTIONS(211), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [21] = { + [sym_block] = STATE(771), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(51), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [22] = { + [sym_block] = STATE(771), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(612), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(611), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(51), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [23] = { + [sym_statement] = STATE(23), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(23), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_async] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(438), + [anon_sym_match] = ACTIONS(643), + [anon_sym_EQ_GT] = ACTIONS(646), + [anon_sym_while] = ACTIONS(649), + [anon_sym_for] = ACTIONS(652), + [anon_sym_transform] = ACTIONS(655), + [anon_sym_filter] = ACTIONS(658), + [anon_sym_find] = ACTIONS(661), + [anon_sym_remove] = ACTIONS(664), + [anon_sym_reduce] = ACTIONS(667), + [anon_sym_select] = ACTIONS(670), + [anon_sym_insert] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(676), + [anon_sym_assert] = ACTIONS(679), + [anon_sym_assert_equal] = ACTIONS(679), + [anon_sym_download] = ACTIONS(679), + [anon_sym_help] = ACTIONS(679), + [anon_sym_length] = ACTIONS(679), + [anon_sym_output] = ACTIONS(679), + [anon_sym_output_error] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_append] = ACTIONS(679), + [anon_sym_metadata] = ACTIONS(679), + [anon_sym_move] = ACTIONS(679), + [anon_sym_read] = ACTIONS(679), + [anon_sym_workdir] = ACTIONS(679), + [anon_sym_write] = ACTIONS(679), + [anon_sym_from_json] = ACTIONS(679), + [anon_sym_to_json] = ACTIONS(679), + [anon_sym_to_string] = ACTIONS(679), + [anon_sym_to_float] = ACTIONS(679), + [anon_sym_bash] = ACTIONS(679), + [anon_sym_fish] = ACTIONS(679), + [anon_sym_raw] = ACTIONS(679), + [anon_sym_sh] = ACTIONS(679), + [anon_sym_zsh] = ACTIONS(679), + [anon_sym_random] = ACTIONS(679), + [anon_sym_random_boolean] = ACTIONS(679), + [anon_sym_random_float] = ACTIONS(679), + [anon_sym_random_integer] = ACTIONS(679), + [anon_sym_columns] = ACTIONS(679), + [anon_sym_rows] = ACTIONS(679), + [anon_sym_reverse] = ACTIONS(679), + }, + [24] = { + [sym_statement] = STATE(24), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(24), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(682), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(283), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_async] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(688), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(694), + [anon_sym_while] = ACTIONS(697), + [anon_sym_for] = ACTIONS(700), + [anon_sym_transform] = ACTIONS(703), + [anon_sym_filter] = ACTIONS(706), + [anon_sym_find] = ACTIONS(709), + [anon_sym_remove] = ACTIONS(712), + [anon_sym_reduce] = ACTIONS(715), + [anon_sym_select] = ACTIONS(718), + [anon_sym_insert] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(724), + [anon_sym_assert] = ACTIONS(727), + [anon_sym_assert_equal] = ACTIONS(727), + [anon_sym_download] = ACTIONS(727), + [anon_sym_help] = ACTIONS(727), + [anon_sym_length] = ACTIONS(727), + [anon_sym_output] = ACTIONS(727), + [anon_sym_output_error] = ACTIONS(727), + [anon_sym_type] = ACTIONS(727), + [anon_sym_append] = ACTIONS(727), + [anon_sym_metadata] = ACTIONS(727), + [anon_sym_move] = ACTIONS(727), + [anon_sym_read] = ACTIONS(727), + [anon_sym_workdir] = ACTIONS(727), + [anon_sym_write] = ACTIONS(727), + [anon_sym_from_json] = ACTIONS(727), + [anon_sym_to_json] = ACTIONS(727), + [anon_sym_to_string] = ACTIONS(727), + [anon_sym_to_float] = ACTIONS(727), + [anon_sym_bash] = ACTIONS(727), + [anon_sym_fish] = ACTIONS(727), + [anon_sym_raw] = ACTIONS(727), + [anon_sym_sh] = ACTIONS(727), + [anon_sym_zsh] = ACTIONS(727), + [anon_sym_random] = ACTIONS(727), + [anon_sym_random_boolean] = ACTIONS(727), + [anon_sym_random_float] = ACTIONS(727), + [anon_sym_random_integer] = ACTIONS(727), + [anon_sym_columns] = ACTIONS(727), + [anon_sym_rows] = ACTIONS(727), + [anon_sym_reverse] = ACTIONS(727), + }, + [25] = { + [sym_block] = STATE(771), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(612), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(611), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(51), + [anon_sym_SEMI] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(51), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [26] = { + [sym_statement] = STATE(24), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(24), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(211), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(255), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [27] = { + [sym_statement] = STATE(28), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(28), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(211), + [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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [28] = { + [sym_statement] = STATE(28), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(28), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(730), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(283), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_async] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_DOT_DOT] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(573), + [anon_sym_match] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(739), + [anon_sym_while] = ACTIONS(742), + [anon_sym_for] = ACTIONS(745), + [anon_sym_transform] = ACTIONS(748), + [anon_sym_filter] = ACTIONS(751), + [anon_sym_find] = ACTIONS(754), + [anon_sym_remove] = ACTIONS(757), + [anon_sym_reduce] = ACTIONS(760), + [anon_sym_select] = ACTIONS(763), + [anon_sym_insert] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(769), + [anon_sym_assert] = ACTIONS(772), + [anon_sym_assert_equal] = ACTIONS(772), + [anon_sym_download] = ACTIONS(772), + [anon_sym_help] = ACTIONS(772), + [anon_sym_length] = ACTIONS(772), + [anon_sym_output] = ACTIONS(772), + [anon_sym_output_error] = ACTIONS(772), + [anon_sym_type] = ACTIONS(772), + [anon_sym_append] = ACTIONS(772), + [anon_sym_metadata] = ACTIONS(772), + [anon_sym_move] = ACTIONS(772), + [anon_sym_read] = ACTIONS(772), + [anon_sym_workdir] = ACTIONS(772), + [anon_sym_write] = ACTIONS(772), + [anon_sym_from_json] = ACTIONS(772), + [anon_sym_to_json] = ACTIONS(772), + [anon_sym_to_string] = ACTIONS(772), + [anon_sym_to_float] = ACTIONS(772), + [anon_sym_bash] = ACTIONS(772), + [anon_sym_fish] = ACTIONS(772), + [anon_sym_raw] = ACTIONS(772), + [anon_sym_sh] = ACTIONS(772), + [anon_sym_zsh] = ACTIONS(772), + [anon_sym_random] = ACTIONS(772), + [anon_sym_random_boolean] = ACTIONS(772), + [anon_sym_random_float] = ACTIONS(772), + [anon_sym_random_integer] = ACTIONS(772), + [anon_sym_columns] = ACTIONS(772), + [anon_sym_rows] = ACTIONS(772), + [anon_sym_reverse] = ACTIONS(772), + }, + [29] = { + [sym_statement] = STATE(30), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(30), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(211), + [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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(211), + [anon_sym_DASH] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(211), + [anon_sym_SLASH] = ACTIONS(211), + [anon_sym_PERCENT] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(211), + [anon_sym_AMP_AMP] = ACTIONS(211), + [anon_sym_PIPE_PIPE] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [30] = { + [sym_statement] = STATE(30), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(30), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(775), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(283), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_async] = ACTIONS(778), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(283), + [anon_sym_DASH] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_if] = ACTIONS(688), + [anon_sym_match] = ACTIONS(781), + [anon_sym_EQ_GT] = ACTIONS(784), + [anon_sym_while] = ACTIONS(787), + [anon_sym_for] = ACTIONS(790), + [anon_sym_transform] = ACTIONS(793), + [anon_sym_filter] = ACTIONS(796), + [anon_sym_find] = ACTIONS(799), + [anon_sym_remove] = ACTIONS(802), + [anon_sym_reduce] = ACTIONS(805), + [anon_sym_select] = ACTIONS(808), + [anon_sym_insert] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_table] = ACTIONS(814), + [anon_sym_assert] = ACTIONS(817), + [anon_sym_assert_equal] = ACTIONS(817), + [anon_sym_download] = ACTIONS(817), + [anon_sym_help] = ACTIONS(817), + [anon_sym_length] = ACTIONS(817), + [anon_sym_output] = ACTIONS(817), + [anon_sym_output_error] = ACTIONS(817), + [anon_sym_type] = ACTIONS(817), + [anon_sym_append] = ACTIONS(817), + [anon_sym_metadata] = ACTIONS(817), + [anon_sym_move] = ACTIONS(817), + [anon_sym_read] = ACTIONS(817), + [anon_sym_workdir] = ACTIONS(817), + [anon_sym_write] = ACTIONS(817), + [anon_sym_from_json] = ACTIONS(817), + [anon_sym_to_json] = ACTIONS(817), + [anon_sym_to_string] = ACTIONS(817), + [anon_sym_to_float] = ACTIONS(817), + [anon_sym_bash] = ACTIONS(817), + [anon_sym_fish] = ACTIONS(817), + [anon_sym_raw] = ACTIONS(817), + [anon_sym_sh] = ACTIONS(817), + [anon_sym_zsh] = ACTIONS(817), + [anon_sym_random] = ACTIONS(817), + [anon_sym_random_boolean] = ACTIONS(817), + [anon_sym_random_float] = ACTIONS(817), + [anon_sym_random_integer] = ACTIONS(817), + [anon_sym_columns] = ACTIONS(817), + [anon_sym_rows] = ACTIONS(817), + [anon_sym_reverse] = ACTIONS(817), + }, + [31] = { + [sym_block] = STATE(768), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [32] = { + [sym_block] = STATE(344), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -8544,33 +7969,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [33] = { + [sym_block] = STATE(392), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [34] = { + [sym_block] = STATE(391), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [35] = { + [sym_block] = STATE(372), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -8605,44 +8348,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [36] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(482), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -8650,105 +8393,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [37] = { - [sym_block] = STATE(597), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(697), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -8756,33 +8499,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -8817,256 +8560,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [38] = { - [sym_block] = STATE(595), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(450), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [39] = { - [sym_block] = STATE(575), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [40] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -9074,105 +8605,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, - [41] = { - [sym_block] = STATE(578), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [39] = { + [sym_block] = STATE(776), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [40] = { + [sym_block] = STATE(659), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -9180,33 +8817,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [41] = { + [sym_block] = STATE(756), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -9241,256 +8984,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [42] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(478), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [43] = { - [sym_block] = STATE(588), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(452), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [44] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), + [sym_block] = STATE(715), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -9498,317 +9241,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [45] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(474), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [46] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), + [sym_block] = STATE(662), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [47] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), + [sym_block] = STATE(465), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -9816,105 +9559,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [48] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), + [sym_block] = STATE(778), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -9922,105 +9665,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [49] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), + [sym_block] = STATE(768), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -10028,5826 +9771,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [50] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [51] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [52] = { - [sym_block] = STATE(591), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [53] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [54] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [55] = { - [sym_block] = STATE(598), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [56] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [57] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [58] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [59] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [60] = { - [sym_block] = STATE(578), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [61] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [62] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [63] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [64] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [65] = { [sym_block] = STATE(406), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [66] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [67] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [68] = { - [sym_block] = STATE(575), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [69] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [70] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [71] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [72] = { - [sym_block] = STATE(595), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [73] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [74] = { - [sym_block] = STATE(597), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [75] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [76] = { - [sym_block] = STATE(577), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [77] = { - [sym_block] = STATE(588), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [78] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [79] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [80] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [81] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [82] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [83] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [84] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [85] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [86] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [87] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [88] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [89] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [90] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [91] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [92] = { - [sym_block] = STATE(767), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [93] = { - [sym_block] = STATE(697), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [94] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [95] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [96] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [97] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [98] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [99] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [100] = { - [sym_statement] = STATE(25), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(25), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), - [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_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [101] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(205), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [102] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [103] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [104] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -15858,33 +9877,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -15918,45 +9937,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(109), [anon_sym_reverse] = ACTIONS(109), }, - [105] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [51] = { + [sym_block] = STATE(446), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [52] = { + [sym_block] = STATE(779), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [53] = { + [sym_block] = STATE(397), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -15964,33 +10195,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -16024,43 +10255,5555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(143), [anon_sym_reverse] = ACTIONS(143), }, + [54] = { + [sym_block] = STATE(685), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [55] = { + [sym_block] = STATE(588), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [56] = { + [sym_block] = STATE(715), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [57] = { + [sym_block] = STATE(675), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [58] = { + [sym_block] = STATE(673), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [59] = { + [sym_block] = STATE(778), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [60] = { + [sym_block] = STATE(672), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [61] = { + [sym_block] = STATE(662), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [62] = { + [sym_block] = STATE(659), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [63] = { + [sym_block] = STATE(448), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [64] = { + [sym_block] = STATE(672), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [65] = { + [sym_block] = STATE(344), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [66] = { + [sym_block] = STATE(448), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [67] = { + [sym_block] = STATE(673), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [68] = { + [sym_block] = STATE(675), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [69] = { + [sym_block] = STATE(446), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [70] = { + [sym_block] = STATE(465), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [71] = { + [sym_block] = STATE(474), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [72] = { + [sym_block] = STATE(452), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [73] = { + [sym_block] = STATE(588), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [74] = { + [sym_block] = STATE(685), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [75] = { + [sym_block] = STATE(337), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [76] = { + [sym_block] = STATE(478), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [77] = { + [sym_block] = STATE(770), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [78] = { + [sym_block] = STATE(399), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [79] = { + [sym_block] = STATE(402), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [80] = { + [sym_block] = STATE(769), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [81] = { + [sym_block] = STATE(396), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [82] = { + [sym_block] = STATE(450), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [83] = { + [sym_block] = STATE(482), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [84] = { + [sym_block] = STATE(392), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [85] = { + [sym_block] = STATE(406), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [86] = { + [sym_block] = STATE(337), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [87] = { + [sym_block] = STATE(772), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [88] = { + [sym_block] = STATE(399), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [89] = { + [sym_block] = STATE(402), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [90] = { + [sym_block] = STATE(396), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [91] = { + [sym_block] = STATE(392), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [92] = { + [sym_block] = STATE(391), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [93] = { + [sym_block] = STATE(372), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [94] = { + [sym_block] = STATE(391), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [95] = { + [sym_block] = STATE(391), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [96] = { + [sym_block] = STATE(392), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [97] = { + [sym_block] = STATE(396), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [98] = { + [sym_block] = STATE(372), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [99] = { + [sym_block] = STATE(396), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [100] = { + [sym_block] = STATE(773), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [101] = { + [sym_block] = STATE(772), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [102] = { + [sym_block] = STATE(769), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [103] = { + [sym_block] = STATE(770), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [104] = { + [sym_block] = STATE(448), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [105] = { + [sym_block] = STATE(402), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, [106] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), + [sym_block] = STATE(372), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -16070,102 +15813,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [107] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), + [sym_block] = STATE(406), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -16176,33 +15919,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -16237,44 +15980,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [108] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(756), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -16282,739 +16025,739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [109] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(779), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [110] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(482), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [111] = { - [sym_block] = STATE(593), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(450), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [112] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(478), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [113] = { - [sym_block] = STATE(579), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), + [sym_block] = STATE(776), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [114] = { - [sym_block] = STATE(591), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), + [sym_block] = STATE(482), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [115] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(399), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -17024,208 +16767,950 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), }, [116] = { - [sym_block] = STATE(393), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(776), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [117] = { - [sym_block] = STATE(403), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), + [sym_block] = STATE(768), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [118] = { + [sym_block] = STATE(779), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [119] = { + [sym_block] = STATE(450), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [120] = { + [sym_block] = STATE(770), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [121] = { + [sym_block] = STATE(769), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [122] = { + [sym_block] = STATE(778), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [123] = { + [sym_block] = STATE(344), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [124] = { + [sym_block] = STATE(402), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -17236,33 +17721,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -17296,148 +17781,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(143), [anon_sym_reverse] = ACTIONS(143), }, - [118] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [119] = { - [sym_block] = STATE(396), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [125] = { + [sym_block] = STATE(397), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -17448,33 +17827,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -17508,43 +17887,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(109), [anon_sym_reverse] = ACTIONS(109), }, - [120] = { - [sym_block] = STATE(406), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [126] = { + [sym_block] = STATE(344), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -17554,741 +17933,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [121] = { - [sym_block] = STATE(577), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [122] = { - [sym_block] = STATE(696), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [123] = { - [sym_block] = STATE(695), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [124] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [125] = { - [sym_block] = STATE(694), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [126] = { - [sym_block] = STATE(692), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [127] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(452), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18296,105 +18039,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [128] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(478), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18402,33 +18145,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -18463,44 +18206,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [129] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(452), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18508,317 +18251,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [130] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(399), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [131] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(697), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [132] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(772), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18826,33 +18569,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -18887,44 +18630,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [133] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(474), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -18932,102 +18675,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [134] = { - [sym_block] = STATE(390), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), + [sym_block] = STATE(337), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -19038,33 +18781,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -19099,148 +18842,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [135] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [136] = { - [sym_block] = STATE(405), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_block] = STATE(397), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -19250,103 +18887,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [136] = { + [sym_block] = STATE(337), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), }, [137] = { - [sym_block] = STATE(687), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), + [sym_block] = STATE(474), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -19356,33 +19099,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -19417,44 +19160,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [138] = { - [sym_block] = STATE(472), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), + [sym_block] = STATE(465), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -19462,21 +19205,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), [anon_sym_match] = ACTIONS(185), [anon_sym_EQ_GT] = ACTIONS(187), [anon_sym_while] = ACTIONS(189), @@ -19488,79 +19232,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reduce] = ACTIONS(201), [anon_sym_select] = ACTIONS(203), [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [139] = { - [sym_block] = STATE(467), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_block] = STATE(773), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -19568,245 +19311,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [140] = { - [sym_block] = STATE(465), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [141] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -19840,255 +19371,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(49), [anon_sym_reverse] = ACTIONS(49), }, - [142] = { - [sym_block] = STATE(461), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [143] = { - [sym_block] = STATE(460), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [144] = { - [sym_block] = STATE(686), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), + [140] = { + [sym_block] = STATE(773), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -20098,33 +19417,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [141] = { + [sym_block] = STATE(446), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [142] = { + [sym_block] = STATE(448), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [143] = { + [sym_block] = STATE(465), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [144] = { + [sym_block] = STATE(446), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(475), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -20159,148 +19902,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [145] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_block] = STATE(397), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [146] = { - [sym_block] = STATE(389), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_block] = STATE(406), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(341), + [sym_logic_operator] = STATE(695), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -20310,1501 +20053,1712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), }, [147] = { - [sym_block] = STATE(458), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_expression] = STATE(314), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(156), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(294), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [148] = { - [sym_block] = STATE(457), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(165), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(293), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [149] = { - [sym_block] = STATE(386), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(169), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(288), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [150] = { - [sym_block] = STATE(459), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(466), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), + [sym_expression] = STATE(327), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(175), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(299), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [151] = { - [sym_block] = STATE(387), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(194), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(295), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [152] = { - [sym_block] = STATE(388), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_math_operator] = STATE(800), - [sym_logic] = STATE(409), - [sym_logic_operator] = STATE(799), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(300), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [153] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(451), + [sym_expression] = STATE(314), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(157), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(318), - [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_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(828), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_elseif] = ACTIONS(828), + [anon_sym_else] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [154] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(823), + [sym_expression] = STATE(865), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(318), - [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_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [155] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(451), + [sym_expression] = STATE(865), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [156] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(1055), + [sym_expression] = STATE(314), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(157), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(898), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_elseif] = ACTIONS(898), + [anon_sym_else] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [157] = { - [sym_statement] = STATE(30), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(1055), + [sym_expression] = STATE(314), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(157), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1094), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_assert_equal] = ACTIONS(1097), - [anon_sym_download] = ACTIONS(1097), - [anon_sym_help] = ACTIONS(1097), - [anon_sym_length] = ACTIONS(1097), - [anon_sym_output] = ACTIONS(1097), - [anon_sym_output_error] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_append] = ACTIONS(1097), - [anon_sym_metadata] = ACTIONS(1097), - [anon_sym_move] = ACTIONS(1097), - [anon_sym_read] = ACTIONS(1097), - [anon_sym_workdir] = ACTIONS(1097), - [anon_sym_write] = ACTIONS(1097), - [anon_sym_from_json] = ACTIONS(1097), - [anon_sym_to_json] = ACTIONS(1097), - [anon_sym_to_string] = ACTIONS(1097), - [anon_sym_to_float] = ACTIONS(1097), - [anon_sym_bash] = ACTIONS(1097), - [anon_sym_fish] = ACTIONS(1097), - [anon_sym_raw] = ACTIONS(1097), - [anon_sym_sh] = ACTIONS(1097), - [anon_sym_zsh] = ACTIONS(1097), - [anon_sym_random] = ACTIONS(1097), - [anon_sym_random_boolean] = ACTIONS(1097), - [anon_sym_random_float] = ACTIONS(1097), - [anon_sym_random_integer] = ACTIONS(1097), - [anon_sym_columns] = ACTIONS(1097), - [anon_sym_rows] = ACTIONS(1097), - [anon_sym_reverse] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(916), + [sym_string] = ACTIONS(916), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_elseif] = ACTIONS(902), + [anon_sym_else] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(930), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(936), + [anon_sym_assert] = ACTIONS(939), + [anon_sym_assert_equal] = ACTIONS(939), + [anon_sym_download] = ACTIONS(939), + [anon_sym_help] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_output] = ACTIONS(939), + [anon_sym_output_error] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_append] = ACTIONS(939), + [anon_sym_metadata] = ACTIONS(939), + [anon_sym_move] = ACTIONS(939), + [anon_sym_read] = ACTIONS(939), + [anon_sym_workdir] = ACTIONS(939), + [anon_sym_write] = ACTIONS(939), + [anon_sym_from_json] = ACTIONS(939), + [anon_sym_to_json] = ACTIONS(939), + [anon_sym_to_string] = ACTIONS(939), + [anon_sym_to_float] = ACTIONS(939), + [anon_sym_bash] = ACTIONS(939), + [anon_sym_fish] = ACTIONS(939), + [anon_sym_raw] = ACTIONS(939), + [anon_sym_sh] = ACTIONS(939), + [anon_sym_zsh] = ACTIONS(939), + [anon_sym_random] = ACTIONS(939), + [anon_sym_random_boolean] = ACTIONS(939), + [anon_sym_random_float] = ACTIONS(939), + [anon_sym_random_integer] = ACTIONS(939), + [anon_sym_columns] = ACTIONS(939), + [anon_sym_rows] = ACTIONS(939), + [anon_sym_reverse] = ACTIONS(939), }, [158] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(1147), + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(194), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(298), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [159] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(1147), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(203), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(290), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [160] = { - [sym_statement] = STATE(33), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(33), - [sym_identifier] = ACTIONS(823), + [sym_expression] = STATE(314), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(153), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(942), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_elseif] = ACTIONS(942), + [anon_sym_else] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(47), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [161] = { + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(165), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment_operator] = STATE(292), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_elseif] = ACTIONS(820), + [anon_sym_else] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), + }, + [162] = { + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(162), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(916), + [sym_string] = ACTIONS(916), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_elseif] = ACTIONS(902), + [anon_sym_else] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(952), + [anon_sym_assert] = ACTIONS(955), + [anon_sym_assert_equal] = ACTIONS(955), + [anon_sym_download] = ACTIONS(955), + [anon_sym_help] = ACTIONS(955), + [anon_sym_length] = ACTIONS(955), + [anon_sym_output] = ACTIONS(955), + [anon_sym_output_error] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_append] = ACTIONS(955), + [anon_sym_metadata] = ACTIONS(955), + [anon_sym_move] = ACTIONS(955), + [anon_sym_read] = ACTIONS(955), + [anon_sym_workdir] = ACTIONS(955), + [anon_sym_write] = ACTIONS(955), + [anon_sym_from_json] = ACTIONS(955), + [anon_sym_to_json] = ACTIONS(955), + [anon_sym_to_string] = ACTIONS(955), + [anon_sym_to_float] = ACTIONS(955), + [anon_sym_bash] = ACTIONS(955), + [anon_sym_fish] = ACTIONS(955), + [anon_sym_raw] = ACTIONS(955), + [anon_sym_sh] = ACTIONS(955), + [anon_sym_zsh] = ACTIONS(955), + [anon_sym_random] = ACTIONS(955), + [anon_sym_random_boolean] = ACTIONS(955), + [anon_sym_random_float] = ACTIONS(955), + [anon_sym_random_integer] = ACTIONS(955), + [anon_sym_columns] = ACTIONS(955), + [anon_sym_rows] = ACTIONS(955), + [anon_sym_reverse] = ACTIONS(955), + }, + [163] = { + [sym_expression] = STATE(855), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), [anon_sym_assert] = ACTIONS(49), [anon_sym_assert_equal] = ACTIONS(49), [anon_sym_download] = ACTIONS(49), @@ -21836,3631 +21790,2277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(49), [anon_sym_reverse] = ACTIONS(49), }, - [161] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(167), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(333), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), - }, - [162] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(335), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), - }, - [163] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(196), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(328), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), - }, [164] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(191), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(329), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(855), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [165] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(203), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(330), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(162), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(898), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_elseif] = ACTIONS(898), + [anon_sym_else] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [166] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(208), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(336), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(162), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_RBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(828), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_elseif] = ACTIONS(828), + [anon_sym_else] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [167] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(296), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [168] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(174), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), + [sym_expression] = STATE(325), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(166), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), [sym_string] = ACTIONS(61), [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), + [anon_sym_RBRACK] = ACTIONS(942), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_elseif] = ACTIONS(942), + [anon_sym_else] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [169] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(176), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(327), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(181), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [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_RBRACK] = ACTIONS(898), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [170] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(327), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(174), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(828), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_elseif] = ACTIONS(828), + [anon_sym_else] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [171] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(297), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [172] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(203), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment_operator] = STATE(334), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(182), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_elseif] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [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_RBRACK] = ACTIONS(942), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [173] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(220), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(332), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(864), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [174] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(327), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(174), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(902), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(916), + [sym_string] = ACTIONS(916), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_async] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_elseif] = ACTIONS(902), + [anon_sym_else] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(930), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(936), + [anon_sym_assert] = ACTIONS(939), + [anon_sym_assert_equal] = ACTIONS(939), + [anon_sym_download] = ACTIONS(939), + [anon_sym_help] = ACTIONS(939), + [anon_sym_length] = ACTIONS(939), + [anon_sym_output] = ACTIONS(939), + [anon_sym_output_error] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_append] = ACTIONS(939), + [anon_sym_metadata] = ACTIONS(939), + [anon_sym_move] = ACTIONS(939), + [anon_sym_read] = ACTIONS(939), + [anon_sym_workdir] = ACTIONS(939), + [anon_sym_write] = ACTIONS(939), + [anon_sym_from_json] = ACTIONS(939), + [anon_sym_to_json] = ACTIONS(939), + [anon_sym_to_string] = ACTIONS(939), + [anon_sym_to_float] = ACTIONS(939), + [anon_sym_bash] = ACTIONS(939), + [anon_sym_fish] = ACTIONS(939), + [anon_sym_raw] = ACTIONS(939), + [anon_sym_sh] = ACTIONS(939), + [anon_sym_zsh] = ACTIONS(939), + [anon_sym_random] = ACTIONS(939), + [anon_sym_random_boolean] = ACTIONS(939), + [anon_sym_random_float] = ACTIONS(939), + [anon_sym_random_integer] = ACTIONS(939), + [anon_sym_columns] = ACTIONS(939), + [anon_sym_rows] = ACTIONS(939), + [anon_sym_reverse] = ACTIONS(939), }, [175] = { - [sym_expression] = STATE(353), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(175), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), + [sym_expression] = STATE(327), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(174), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1353), - [anon_sym_assert] = ACTIONS(1356), - [anon_sym_assert_equal] = ACTIONS(1356), - [anon_sym_download] = ACTIONS(1356), - [anon_sym_help] = ACTIONS(1356), - [anon_sym_length] = ACTIONS(1356), - [anon_sym_output] = ACTIONS(1356), - [anon_sym_output_error] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_append] = ACTIONS(1356), - [anon_sym_metadata] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_read] = ACTIONS(1356), - [anon_sym_workdir] = ACTIONS(1356), - [anon_sym_write] = ACTIONS(1356), - [anon_sym_from_json] = ACTIONS(1356), - [anon_sym_to_json] = ACTIONS(1356), - [anon_sym_to_string] = ACTIONS(1356), - [anon_sym_to_float] = ACTIONS(1356), - [anon_sym_bash] = ACTIONS(1356), - [anon_sym_fish] = ACTIONS(1356), - [anon_sym_raw] = ACTIONS(1356), - [anon_sym_sh] = ACTIONS(1356), - [anon_sym_zsh] = ACTIONS(1356), - [anon_sym_random] = ACTIONS(1356), - [anon_sym_random_boolean] = ACTIONS(1356), - [anon_sym_random_float] = ACTIONS(1356), - [anon_sym_random_integer] = ACTIONS(1356), - [anon_sym_columns] = ACTIONS(1356), - [anon_sym_rows] = ACTIONS(1356), - [anon_sym_reverse] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(898), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_elseif] = ACTIONS(898), + [anon_sym_else] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [176] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(864), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [177] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(327), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(170), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(942), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), [sym_string] = ACTIONS(61), [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_elseif] = ACTIONS(942), + [anon_sym_else] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), }, [178] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(337), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(289), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [179] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(179), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), + [sym_expression] = STATE(856), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(179), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1362), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_assert_equal] = ACTIONS(1365), - [anon_sym_download] = ACTIONS(1365), - [anon_sym_help] = ACTIONS(1365), - [anon_sym_length] = ACTIONS(1365), - [anon_sym_output] = ACTIONS(1365), - [anon_sym_output_error] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_append] = ACTIONS(1365), - [anon_sym_metadata] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_read] = ACTIONS(1365), - [anon_sym_workdir] = ACTIONS(1365), - [anon_sym_write] = ACTIONS(1365), - [anon_sym_from_json] = ACTIONS(1365), - [anon_sym_to_json] = ACTIONS(1365), - [anon_sym_to_string] = ACTIONS(1365), - [anon_sym_to_float] = ACTIONS(1365), - [anon_sym_bash] = ACTIONS(1365), - [anon_sym_fish] = ACTIONS(1365), - [anon_sym_raw] = ACTIONS(1365), - [anon_sym_sh] = ACTIONS(1365), - [anon_sym_zsh] = ACTIONS(1365), - [anon_sym_random] = ACTIONS(1365), - [anon_sym_random_boolean] = ACTIONS(1365), - [anon_sym_random_float] = ACTIONS(1365), - [anon_sym_random_integer] = ACTIONS(1365), - [anon_sym_columns] = ACTIONS(1365), - [anon_sym_rows] = ACTIONS(1365), - [anon_sym_reverse] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [180] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(856), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(179), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [181] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(181), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(960), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(972), + [sym_string] = ACTIONS(972), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(987), + [anon_sym_assert] = ACTIONS(990), + [anon_sym_assert_equal] = ACTIONS(990), + [anon_sym_download] = ACTIONS(990), + [anon_sym_help] = ACTIONS(990), + [anon_sym_length] = ACTIONS(990), + [anon_sym_output] = ACTIONS(990), + [anon_sym_output_error] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_append] = ACTIONS(990), + [anon_sym_metadata] = ACTIONS(990), + [anon_sym_move] = ACTIONS(990), + [anon_sym_read] = ACTIONS(990), + [anon_sym_workdir] = ACTIONS(990), + [anon_sym_write] = ACTIONS(990), + [anon_sym_from_json] = ACTIONS(990), + [anon_sym_to_json] = ACTIONS(990), + [anon_sym_to_string] = ACTIONS(990), + [anon_sym_to_float] = ACTIONS(990), + [anon_sym_bash] = ACTIONS(990), + [anon_sym_fish] = ACTIONS(990), + [anon_sym_raw] = ACTIONS(990), + [anon_sym_sh] = ACTIONS(990), + [anon_sym_zsh] = ACTIONS(990), + [anon_sym_random] = ACTIONS(990), + [anon_sym_random_boolean] = ACTIONS(990), + [anon_sym_random_float] = ACTIONS(990), + [anon_sym_random_integer] = ACTIONS(990), + [anon_sym_columns] = ACTIONS(990), + [anon_sym_rows] = ACTIONS(990), + [anon_sym_reverse] = ACTIONS(990), }, [182] = { - [sym_expression] = STATE(369), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(177), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(181), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(828), + [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_RBRACK] = ACTIONS(828), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [183] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(297), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [sym_integer] = ACTIONS(822), + [sym_float] = ACTIONS(820), + [sym_string] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_async] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_if] = ACTIONS(822), + [anon_sym_match] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_while] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_transform] = ACTIONS(822), + [anon_sym_filter] = ACTIONS(822), + [anon_sym_find] = ACTIONS(822), + [anon_sym_remove] = ACTIONS(822), + [anon_sym_reduce] = ACTIONS(822), + [anon_sym_select] = ACTIONS(822), + [anon_sym_insert] = ACTIONS(822), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_table] = ACTIONS(822), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_assert_equal] = ACTIONS(822), + [anon_sym_download] = ACTIONS(822), + [anon_sym_help] = ACTIONS(822), + [anon_sym_length] = ACTIONS(822), + [anon_sym_output] = ACTIONS(822), + [anon_sym_output_error] = ACTIONS(822), + [anon_sym_type] = ACTIONS(822), + [anon_sym_append] = ACTIONS(822), + [anon_sym_metadata] = ACTIONS(822), + [anon_sym_move] = ACTIONS(822), + [anon_sym_read] = ACTIONS(822), + [anon_sym_workdir] = ACTIONS(822), + [anon_sym_write] = ACTIONS(822), + [anon_sym_from_json] = ACTIONS(822), + [anon_sym_to_json] = ACTIONS(822), + [anon_sym_to_string] = ACTIONS(822), + [anon_sym_to_float] = ACTIONS(822), + [anon_sym_bash] = ACTIONS(822), + [anon_sym_fish] = ACTIONS(822), + [anon_sym_raw] = ACTIONS(822), + [anon_sym_sh] = ACTIONS(822), + [anon_sym_zsh] = ACTIONS(822), + [anon_sym_random] = ACTIONS(822), + [anon_sym_random_boolean] = ACTIONS(822), + [anon_sym_random_float] = ACTIONS(822), + [anon_sym_random_integer] = ACTIONS(822), + [anon_sym_columns] = ACTIONS(822), + [anon_sym_rows] = ACTIONS(822), + [anon_sym_reverse] = ACTIONS(822), }, [184] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(183), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(849), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [185] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(185), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(960), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(972), + [sym_string] = ACTIONS(972), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(998), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(1001), + [anon_sym_assert] = ACTIONS(1004), + [anon_sym_assert_equal] = ACTIONS(1004), + [anon_sym_download] = ACTIONS(1004), + [anon_sym_help] = ACTIONS(1004), + [anon_sym_length] = ACTIONS(1004), + [anon_sym_output] = ACTIONS(1004), + [anon_sym_output_error] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(1004), + [anon_sym_append] = ACTIONS(1004), + [anon_sym_metadata] = ACTIONS(1004), + [anon_sym_move] = ACTIONS(1004), + [anon_sym_read] = ACTIONS(1004), + [anon_sym_workdir] = ACTIONS(1004), + [anon_sym_write] = ACTIONS(1004), + [anon_sym_from_json] = ACTIONS(1004), + [anon_sym_to_json] = ACTIONS(1004), + [anon_sym_to_string] = ACTIONS(1004), + [anon_sym_to_float] = ACTIONS(1004), + [anon_sym_bash] = ACTIONS(1004), + [anon_sym_fish] = ACTIONS(1004), + [anon_sym_raw] = ACTIONS(1004), + [anon_sym_sh] = ACTIONS(1004), + [anon_sym_zsh] = ACTIONS(1004), + [anon_sym_random] = ACTIONS(1004), + [anon_sym_random_boolean] = ACTIONS(1004), + [anon_sym_random_float] = ACTIONS(1004), + [anon_sym_random_integer] = ACTIONS(1004), + [anon_sym_columns] = ACTIONS(1004), + [anon_sym_rows] = ACTIONS(1004), + [anon_sym_reverse] = ACTIONS(1004), }, [186] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), + [sym_expression] = STATE(837), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_assert_equal] = ACTIONS(1395), - [anon_sym_download] = ACTIONS(1395), - [anon_sym_help] = ACTIONS(1395), - [anon_sym_length] = ACTIONS(1395), - [anon_sym_output] = ACTIONS(1395), - [anon_sym_output_error] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_append] = ACTIONS(1395), - [anon_sym_metadata] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_read] = ACTIONS(1395), - [anon_sym_workdir] = ACTIONS(1395), - [anon_sym_write] = ACTIONS(1395), - [anon_sym_from_json] = ACTIONS(1395), - [anon_sym_to_json] = ACTIONS(1395), - [anon_sym_to_string] = ACTIONS(1395), - [anon_sym_to_float] = ACTIONS(1395), - [anon_sym_bash] = ACTIONS(1395), - [anon_sym_fish] = ACTIONS(1395), - [anon_sym_raw] = ACTIONS(1395), - [anon_sym_sh] = ACTIONS(1395), - [anon_sym_zsh] = ACTIONS(1395), - [anon_sym_random] = ACTIONS(1395), - [anon_sym_random_boolean] = ACTIONS(1395), - [anon_sym_random_float] = ACTIONS(1395), - [anon_sym_random_integer] = ACTIONS(1395), - [anon_sym_columns] = ACTIONS(1395), - [anon_sym_rows] = ACTIONS(1395), - [anon_sym_reverse] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [187] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), - }, - [188] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [189] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(331), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), - }, - [190] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [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_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [191] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(186), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [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_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [192] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [193] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(208), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(326), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), - }, - [194] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1353), - [anon_sym_assert] = ACTIONS(1356), - [anon_sym_assert_equal] = ACTIONS(1356), - [anon_sym_download] = ACTIONS(1356), - [anon_sym_help] = ACTIONS(1356), - [anon_sym_length] = ACTIONS(1356), - [anon_sym_output] = ACTIONS(1356), - [anon_sym_output_error] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_append] = ACTIONS(1356), - [anon_sym_metadata] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_read] = ACTIONS(1356), - [anon_sym_workdir] = ACTIONS(1356), - [anon_sym_write] = ACTIONS(1356), - [anon_sym_from_json] = ACTIONS(1356), - [anon_sym_to_json] = ACTIONS(1356), - [anon_sym_to_string] = ACTIONS(1356), - [anon_sym_to_float] = ACTIONS(1356), - [anon_sym_bash] = ACTIONS(1356), - [anon_sym_fish] = ACTIONS(1356), - [anon_sym_raw] = ACTIONS(1356), - [anon_sym_sh] = ACTIONS(1356), - [anon_sym_zsh] = ACTIONS(1356), - [anon_sym_random] = ACTIONS(1356), - [anon_sym_random_boolean] = ACTIONS(1356), - [anon_sym_random_float] = ACTIONS(1356), - [anon_sym_random_integer] = ACTIONS(1356), - [anon_sym_columns] = ACTIONS(1356), - [anon_sym_rows] = ACTIONS(1356), - [anon_sym_reverse] = ACTIONS(1356), - }, - [195] = { - [sym_expression] = STATE(395), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(190), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [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_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [196] = { - [sym_expression] = STATE(368), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(194), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(828), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), [sym_string] = ACTIONS(61), [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), - }, - [197] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [198] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1318), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_elseif] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_elseif] = ACTIONS(828), + [anon_sym_else] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), [anon_sym_PIPE] = ACTIONS(105), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -25494,631 +24094,1579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(143), [anon_sym_reverse] = ACTIONS(143), }, + [188] = { + [sym_expression] = STATE(849), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(188), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), + }, + [189] = { + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(192), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [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_RBRACK] = ACTIONS(942), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [190] = { + [sym_expression] = STATE(837), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), + }, + [191] = { + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(187), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(942), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_elseif] = ACTIONS(942), + [anon_sym_else] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [192] = { + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(185), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_COMMA] = ACTIONS(828), + [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_RBRACK] = ACTIONS(828), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [193] = { + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(904), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(902), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(916), + [sym_string] = ACTIONS(916), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_async] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_elseif] = ACTIONS(902), + [anon_sym_else] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(952), + [anon_sym_assert] = ACTIONS(955), + [anon_sym_assert_equal] = ACTIONS(955), + [anon_sym_download] = ACTIONS(955), + [anon_sym_help] = ACTIONS(955), + [anon_sym_length] = ACTIONS(955), + [anon_sym_output] = ACTIONS(955), + [anon_sym_output_error] = ACTIONS(955), + [anon_sym_type] = ACTIONS(955), + [anon_sym_append] = ACTIONS(955), + [anon_sym_metadata] = ACTIONS(955), + [anon_sym_move] = ACTIONS(955), + [anon_sym_read] = ACTIONS(955), + [anon_sym_workdir] = ACTIONS(955), + [anon_sym_write] = ACTIONS(955), + [anon_sym_from_json] = ACTIONS(955), + [anon_sym_to_json] = ACTIONS(955), + [anon_sym_to_string] = ACTIONS(955), + [anon_sym_to_float] = ACTIONS(955), + [anon_sym_bash] = ACTIONS(955), + [anon_sym_fish] = ACTIONS(955), + [anon_sym_raw] = ACTIONS(955), + [anon_sym_sh] = ACTIONS(955), + [anon_sym_zsh] = ACTIONS(955), + [anon_sym_random] = ACTIONS(955), + [anon_sym_random_boolean] = ACTIONS(955), + [anon_sym_random_float] = ACTIONS(955), + [anon_sym_random_integer] = ACTIONS(955), + [anon_sym_columns] = ACTIONS(955), + [anon_sym_rows] = ACTIONS(955), + [anon_sym_reverse] = ACTIONS(955), + }, + [194] = { + [sym_expression] = STATE(352), + [sym__expression_kind] = STATE(341), + [aux_sym__expression_list] = STATE(193), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(830), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(898), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_elseif] = ACTIONS(898), + [anon_sym_else] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [195] = { + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(185), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(898), + [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_RBRACK] = ACTIONS(898), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [196] = { + [sym_statement] = STATE(202), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(202), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(21), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [197] = { + [sym_expression] = STATE(858), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), + }, + [198] = { + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(205), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(958), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(942), + [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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, [199] = { [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1007), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_EQ_GT] = ACTIONS(514), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_transform] = ACTIONS(1415), - [anon_sym_filter] = ACTIONS(1418), - [anon_sym_find] = ACTIONS(1421), - [anon_sym_remove] = ACTIONS(1424), - [anon_sym_reduce] = ACTIONS(1427), - [anon_sym_select] = ACTIONS(1430), - [anon_sym_insert] = ACTIONS(541), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(547), - [anon_sym_assert] = ACTIONS(550), - [anon_sym_assert_equal] = ACTIONS(550), - [anon_sym_download] = ACTIONS(550), - [anon_sym_help] = ACTIONS(550), - [anon_sym_length] = ACTIONS(550), - [anon_sym_output] = ACTIONS(550), - [anon_sym_output_error] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_append] = ACTIONS(550), - [anon_sym_metadata] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_read] = ACTIONS(550), - [anon_sym_workdir] = ACTIONS(550), - [anon_sym_write] = ACTIONS(550), - [anon_sym_from_json] = ACTIONS(550), - [anon_sym_to_json] = ACTIONS(550), - [anon_sym_to_string] = ACTIONS(550), - [anon_sym_to_float] = ACTIONS(550), - [anon_sym_bash] = ACTIONS(550), - [anon_sym_fish] = ACTIONS(550), - [anon_sym_raw] = ACTIONS(550), - [anon_sym_sh] = ACTIONS(550), - [anon_sym_zsh] = ACTIONS(550), - [anon_sym_random] = ACTIONS(550), - [anon_sym_random_boolean] = ACTIONS(550), - [anon_sym_random_float] = ACTIONS(550), - [anon_sym_random_integer] = ACTIONS(550), - [anon_sym_columns] = ACTIONS(550), - [anon_sym_rows] = ACTIONS(550), - [anon_sym_reverse] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_async] = ACTIONS(435), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_EQ_GT] = ACTIONS(444), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_transform] = ACTIONS(1022), + [anon_sym_filter] = ACTIONS(1025), + [anon_sym_find] = ACTIONS(1028), + [anon_sym_remove] = ACTIONS(1031), + [anon_sym_reduce] = ACTIONS(1034), + [anon_sym_select] = ACTIONS(1037), + [anon_sym_insert] = ACTIONS(471), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_table] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(477), + [anon_sym_assert_equal] = ACTIONS(477), + [anon_sym_download] = ACTIONS(477), + [anon_sym_help] = ACTIONS(477), + [anon_sym_length] = ACTIONS(477), + [anon_sym_output] = ACTIONS(477), + [anon_sym_output_error] = ACTIONS(477), + [anon_sym_type] = ACTIONS(477), + [anon_sym_append] = ACTIONS(477), + [anon_sym_metadata] = ACTIONS(477), + [anon_sym_move] = ACTIONS(477), + [anon_sym_read] = ACTIONS(477), + [anon_sym_workdir] = ACTIONS(477), + [anon_sym_write] = ACTIONS(477), + [anon_sym_from_json] = ACTIONS(477), + [anon_sym_to_json] = ACTIONS(477), + [anon_sym_to_string] = ACTIONS(477), + [anon_sym_to_float] = ACTIONS(477), + [anon_sym_bash] = ACTIONS(477), + [anon_sym_fish] = ACTIONS(477), + [anon_sym_raw] = ACTIONS(477), + [anon_sym_sh] = ACTIONS(477), + [anon_sym_zsh] = ACTIONS(477), + [anon_sym_random] = ACTIONS(477), + [anon_sym_random_boolean] = ACTIONS(477), + [anon_sym_random_float] = ACTIONS(477), + [anon_sym_random_integer] = ACTIONS(477), + [anon_sym_columns] = ACTIONS(477), + [anon_sym_rows] = ACTIONS(477), + [anon_sym_reverse] = ACTIONS(477), }, [200] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(960), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1333), - [sym_float] = ACTIONS(1336), - [sym_string] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1362), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_assert_equal] = ACTIONS(1365), - [anon_sym_download] = ACTIONS(1365), - [anon_sym_help] = ACTIONS(1365), - [anon_sym_length] = ACTIONS(1365), - [anon_sym_output] = ACTIONS(1365), - [anon_sym_output_error] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_append] = ACTIONS(1365), - [anon_sym_metadata] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_read] = ACTIONS(1365), - [anon_sym_workdir] = ACTIONS(1365), - [anon_sym_write] = ACTIONS(1365), - [anon_sym_from_json] = ACTIONS(1365), - [anon_sym_to_json] = ACTIONS(1365), - [anon_sym_to_string] = ACTIONS(1365), - [anon_sym_to_float] = ACTIONS(1365), - [anon_sym_bash] = ACTIONS(1365), - [anon_sym_fish] = ACTIONS(1365), - [anon_sym_raw] = ACTIONS(1365), - [anon_sym_sh] = ACTIONS(1365), - [anon_sym_zsh] = ACTIONS(1365), - [anon_sym_random] = ACTIONS(1365), - [anon_sym_random_boolean] = ACTIONS(1365), - [anon_sym_random_float] = ACTIONS(1365), - [anon_sym_random_integer] = ACTIONS(1365), - [anon_sym_columns] = ACTIONS(1365), - [anon_sym_rows] = ACTIONS(1365), - [anon_sym_reverse] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(902), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(972), + [sym_string] = ACTIONS(972), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_async] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(987), + [anon_sym_assert] = ACTIONS(990), + [anon_sym_assert_equal] = ACTIONS(990), + [anon_sym_download] = ACTIONS(990), + [anon_sym_help] = ACTIONS(990), + [anon_sym_length] = ACTIONS(990), + [anon_sym_output] = ACTIONS(990), + [anon_sym_output_error] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_append] = ACTIONS(990), + [anon_sym_metadata] = ACTIONS(990), + [anon_sym_move] = ACTIONS(990), + [anon_sym_read] = ACTIONS(990), + [anon_sym_workdir] = ACTIONS(990), + [anon_sym_write] = ACTIONS(990), + [anon_sym_from_json] = ACTIONS(990), + [anon_sym_to_json] = ACTIONS(990), + [anon_sym_to_string] = ACTIONS(990), + [anon_sym_to_float] = ACTIONS(990), + [anon_sym_bash] = ACTIONS(990), + [anon_sym_fish] = ACTIONS(990), + [anon_sym_raw] = ACTIONS(990), + [anon_sym_sh] = ACTIONS(990), + [anon_sym_zsh] = ACTIONS(990), + [anon_sym_random] = ACTIONS(990), + [anon_sym_random_boolean] = ACTIONS(990), + [anon_sym_random_float] = ACTIONS(990), + [anon_sym_random_integer] = ACTIONS(990), + [anon_sym_columns] = ACTIONS(990), + [anon_sym_rows] = ACTIONS(990), + [anon_sym_reverse] = ACTIONS(990), }, [201] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), - [aux_sym__expression_list] = STATE(198), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1247), + [sym_expression] = STATE(858), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1253), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_elseif] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [202] = { - [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1439), + [sym_statement] = STATE(202), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(202), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(1043), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(1445), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_transform] = ACTIONS(1454), - [anon_sym_filter] = ACTIONS(1457), - [anon_sym_find] = ACTIONS(1460), - [anon_sym_remove] = ACTIONS(1463), - [anon_sym_reduce] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1469), - [anon_sym_insert] = ACTIONS(589), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(595), - [anon_sym_assert] = ACTIONS(598), - [anon_sym_assert_equal] = ACTIONS(598), - [anon_sym_download] = ACTIONS(598), - [anon_sym_help] = ACTIONS(598), - [anon_sym_length] = ACTIONS(598), - [anon_sym_output] = ACTIONS(598), - [anon_sym_output_error] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_append] = ACTIONS(598), - [anon_sym_metadata] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_read] = ACTIONS(598), - [anon_sym_workdir] = ACTIONS(598), - [anon_sym_write] = ACTIONS(598), - [anon_sym_from_json] = ACTIONS(598), - [anon_sym_to_json] = ACTIONS(598), - [anon_sym_to_string] = ACTIONS(598), - [anon_sym_to_float] = ACTIONS(598), - [anon_sym_bash] = ACTIONS(598), - [anon_sym_fish] = ACTIONS(598), - [anon_sym_raw] = ACTIONS(598), - [anon_sym_sh] = ACTIONS(598), - [anon_sym_zsh] = ACTIONS(598), - [anon_sym_random] = ACTIONS(598), - [anon_sym_random_boolean] = ACTIONS(598), - [anon_sym_random_float] = ACTIONS(598), - [anon_sym_random_integer] = ACTIONS(598), - [anon_sym_columns] = ACTIONS(598), - [anon_sym_rows] = ACTIONS(598), - [anon_sym_reverse] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [sym_integer] = ACTIONS(294), + [sym_float] = ACTIONS(297), + [sym_string] = ACTIONS(297), + [anon_sym_true] = ACTIONS(300), + [anon_sym_false] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_async] = ACTIONS(685), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_elseif] = ACTIONS(283), + [anon_sym_else] = ACTIONS(309), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_EQ_GT] = ACTIONS(694), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1055), + [anon_sym_transform] = ACTIONS(1058), + [anon_sym_filter] = ACTIONS(1061), + [anon_sym_find] = ACTIONS(1064), + [anon_sym_remove] = ACTIONS(1067), + [anon_sym_reduce] = ACTIONS(1070), + [anon_sym_select] = ACTIONS(1073), + [anon_sym_insert] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_table] = ACTIONS(724), + [anon_sym_assert] = ACTIONS(727), + [anon_sym_assert_equal] = ACTIONS(727), + [anon_sym_download] = ACTIONS(727), + [anon_sym_help] = ACTIONS(727), + [anon_sym_length] = ACTIONS(727), + [anon_sym_output] = ACTIONS(727), + [anon_sym_output_error] = ACTIONS(727), + [anon_sym_type] = ACTIONS(727), + [anon_sym_append] = ACTIONS(727), + [anon_sym_metadata] = ACTIONS(727), + [anon_sym_move] = ACTIONS(727), + [anon_sym_read] = ACTIONS(727), + [anon_sym_workdir] = ACTIONS(727), + [anon_sym_write] = ACTIONS(727), + [anon_sym_from_json] = ACTIONS(727), + [anon_sym_to_json] = ACTIONS(727), + [anon_sym_to_string] = ACTIONS(727), + [anon_sym_to_float] = ACTIONS(727), + [anon_sym_bash] = ACTIONS(727), + [anon_sym_fish] = ACTIONS(727), + [anon_sym_raw] = ACTIONS(727), + [anon_sym_sh] = ACTIONS(727), + [anon_sym_zsh] = ACTIONS(727), + [anon_sym_random] = ACTIONS(727), + [anon_sym_random_boolean] = ACTIONS(727), + [anon_sym_random_float] = ACTIONS(727), + [anon_sym_random_integer] = ACTIONS(727), + [anon_sym_columns] = ACTIONS(727), + [anon_sym_rows] = ACTIONS(727), + [anon_sym_reverse] = ACTIONS(727), }, [203] = { - [sym_expression] = STATE(414), - [sym__expression_kind] = STATE(409), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), [aux_sym__expression_list] = STATE(200), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_elseif] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(898), + [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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [204] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1481), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_assert_equal] = ACTIONS(1484), - [anon_sym_download] = ACTIONS(1484), - [anon_sym_help] = ACTIONS(1484), - [anon_sym_length] = ACTIONS(1484), - [anon_sym_output] = ACTIONS(1484), - [anon_sym_output_error] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_append] = ACTIONS(1484), - [anon_sym_metadata] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [anon_sym_read] = ACTIONS(1484), - [anon_sym_workdir] = ACTIONS(1484), - [anon_sym_write] = ACTIONS(1484), - [anon_sym_from_json] = ACTIONS(1484), - [anon_sym_to_json] = ACTIONS(1484), - [anon_sym_to_string] = ACTIONS(1484), - [anon_sym_to_float] = ACTIONS(1484), - [anon_sym_bash] = ACTIONS(1484), - [anon_sym_fish] = ACTIONS(1484), - [anon_sym_raw] = ACTIONS(1484), - [anon_sym_sh] = ACTIONS(1484), - [anon_sym_zsh] = ACTIONS(1484), - [anon_sym_random] = ACTIONS(1484), - [anon_sym_random_boolean] = ACTIONS(1484), - [anon_sym_random_float] = ACTIONS(1484), - [anon_sym_random_integer] = ACTIONS(1484), - [anon_sym_columns] = ACTIONS(1484), - [anon_sym_rows] = ACTIONS(1484), - [anon_sym_reverse] = ACTIONS(1484), - }, - [205] = { [sym_statement] = STATE(199), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), [aux_sym_block_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1439), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(211), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), [sym_string] = ACTIONS(61), [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(380), + [anon_sym_elseif] = ACTIONS(211), + [anon_sym_else] = ACTIONS(215), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -26152,1999 +25700,1516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(143), [anon_sym_reverse] = ACTIONS(143), }, - [206] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [205] = { + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(200), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(828), + [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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [206] = { + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(206), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_RPAREN] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(834), + [anon_sym_SLASH] = ACTIONS(834), + [anon_sym_PERCENT] = ACTIONS(834), + [anon_sym_EQ_EQ] = ACTIONS(834), + [anon_sym_BANG_EQ] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(834), + [anon_sym_LT_EQ] = ACTIONS(834), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [207] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(208), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(898), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_AMP_AMP] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_if] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_transform] = ACTIONS(900), + [anon_sym_filter] = ACTIONS(900), + [anon_sym_find] = ACTIONS(900), + [anon_sym_remove] = ACTIONS(900), + [anon_sym_reduce] = ACTIONS(900), + [anon_sym_select] = ACTIONS(900), + [anon_sym_insert] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [208] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(208), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(960), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [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_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(902), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(972), + [sym_string] = ACTIONS(972), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_async] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(998), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_table] = ACTIONS(1001), + [anon_sym_assert] = ACTIONS(1004), + [anon_sym_assert_equal] = ACTIONS(1004), + [anon_sym_download] = ACTIONS(1004), + [anon_sym_help] = ACTIONS(1004), + [anon_sym_length] = ACTIONS(1004), + [anon_sym_output] = ACTIONS(1004), + [anon_sym_output_error] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(1004), + [anon_sym_append] = ACTIONS(1004), + [anon_sym_metadata] = ACTIONS(1004), + [anon_sym_move] = ACTIONS(1004), + [anon_sym_read] = ACTIONS(1004), + [anon_sym_workdir] = ACTIONS(1004), + [anon_sym_write] = ACTIONS(1004), + [anon_sym_from_json] = ACTIONS(1004), + [anon_sym_to_json] = ACTIONS(1004), + [anon_sym_to_string] = ACTIONS(1004), + [anon_sym_to_float] = ACTIONS(1004), + [anon_sym_bash] = ACTIONS(1004), + [anon_sym_fish] = ACTIONS(1004), + [anon_sym_raw] = ACTIONS(1004), + [anon_sym_sh] = ACTIONS(1004), + [anon_sym_zsh] = ACTIONS(1004), + [anon_sym_random] = ACTIONS(1004), + [anon_sym_random_boolean] = ACTIONS(1004), + [anon_sym_random_float] = ACTIONS(1004), + [anon_sym_random_integer] = ACTIONS(1004), + [anon_sym_columns] = ACTIONS(1004), + [anon_sym_rows] = ACTIONS(1004), + [anon_sym_reverse] = ACTIONS(1004), }, [209] = { - [sym_statement] = STATE(209), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1487), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(211), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(221), - [sym_integer] = ACTIONS(224), - [sym_float] = ACTIONS(227), - [sym_string] = ACTIONS(227), - [anon_sym_true] = ACTIONS(230), - [anon_sym_false] = ACTIONS(230), - [anon_sym_LBRACK] = ACTIONS(233), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_elseif] = ACTIONS(213), - [anon_sym_else] = ACTIONS(236), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_EQ_GT] = ACTIONS(878), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_transform] = ACTIONS(1502), - [anon_sym_filter] = ACTIONS(1505), - [anon_sym_find] = ACTIONS(1508), - [anon_sym_remove] = ACTIONS(1511), - [anon_sym_reduce] = ACTIONS(1514), - [anon_sym_select] = ACTIONS(1517), - [anon_sym_insert] = ACTIONS(905), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(914), - [anon_sym_assert_equal] = ACTIONS(914), - [anon_sym_download] = ACTIONS(914), - [anon_sym_help] = ACTIONS(914), - [anon_sym_length] = ACTIONS(914), - [anon_sym_output] = ACTIONS(914), - [anon_sym_output_error] = ACTIONS(914), - [anon_sym_type] = ACTIONS(914), - [anon_sym_append] = ACTIONS(914), - [anon_sym_metadata] = ACTIONS(914), - [anon_sym_move] = ACTIONS(914), - [anon_sym_read] = ACTIONS(914), - [anon_sym_workdir] = ACTIONS(914), - [anon_sym_write] = ACTIONS(914), - [anon_sym_from_json] = ACTIONS(914), - [anon_sym_to_json] = ACTIONS(914), - [anon_sym_to_string] = ACTIONS(914), - [anon_sym_to_float] = ACTIONS(914), - [anon_sym_bash] = ACTIONS(914), - [anon_sym_fish] = ACTIONS(914), - [anon_sym_raw] = ACTIONS(914), - [anon_sym_sh] = ACTIONS(914), - [anon_sym_zsh] = ACTIONS(914), - [anon_sym_random] = ACTIONS(914), - [anon_sym_random_boolean] = ACTIONS(914), - [anon_sym_random_float] = ACTIONS(914), - [anon_sym_random_integer] = ACTIONS(914), - [anon_sym_columns] = ACTIONS(914), - [anon_sym_rows] = ACTIONS(914), - [anon_sym_reverse] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(942), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(942), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_EQ_EQ] = ACTIONS(942), + [anon_sym_BANG_EQ] = ACTIONS(942), + [anon_sym_AMP_AMP] = ACTIONS(942), + [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_GT] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(942), + [anon_sym_LT_EQ] = ACTIONS(942), + [anon_sym_if] = ACTIONS(944), + [anon_sym_match] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_transform] = ACTIONS(944), + [anon_sym_filter] = ACTIONS(944), + [anon_sym_find] = ACTIONS(944), + [anon_sym_remove] = ACTIONS(944), + [anon_sym_reduce] = ACTIONS(944), + [anon_sym_select] = ACTIONS(944), + [anon_sym_insert] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [210] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(233), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(331), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(206), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1237), - [sym_string] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_transform] = ACTIONS(1239), - [anon_sym_filter] = ACTIONS(1239), - [anon_sym_find] = ACTIONS(1239), - [anon_sym_remove] = ACTIONS(1239), - [anon_sym_reduce] = ACTIONS(1239), - [anon_sym_select] = ACTIONS(1239), - [anon_sym_insert] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_table] = ACTIONS(1239), - [anon_sym_assert] = ACTIONS(1239), - [anon_sym_assert_equal] = ACTIONS(1239), - [anon_sym_download] = ACTIONS(1239), - [anon_sym_help] = ACTIONS(1239), - [anon_sym_length] = ACTIONS(1239), - [anon_sym_output] = ACTIONS(1239), - [anon_sym_output_error] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_append] = ACTIONS(1239), - [anon_sym_metadata] = ACTIONS(1239), - [anon_sym_move] = ACTIONS(1239), - [anon_sym_read] = ACTIONS(1239), - [anon_sym_workdir] = ACTIONS(1239), - [anon_sym_write] = ACTIONS(1239), - [anon_sym_from_json] = ACTIONS(1239), - [anon_sym_to_json] = ACTIONS(1239), - [anon_sym_to_string] = ACTIONS(1239), - [anon_sym_to_float] = ACTIONS(1239), - [anon_sym_bash] = ACTIONS(1239), - [anon_sym_fish] = ACTIONS(1239), - [anon_sym_raw] = ACTIONS(1239), - [anon_sym_sh] = ACTIONS(1239), - [anon_sym_zsh] = ACTIONS(1239), - [anon_sym_random] = ACTIONS(1239), - [anon_sym_random_boolean] = ACTIONS(1239), - [anon_sym_random_float] = ACTIONS(1239), - [anon_sym_random_integer] = ACTIONS(1239), - [anon_sym_columns] = ACTIONS(1239), - [anon_sym_rows] = ACTIONS(1239), - [anon_sym_reverse] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [211] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(208), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(828), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(828), + [anon_sym_DASH] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(828), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_BANG_EQ] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT_EQ] = ACTIONS(828), + [anon_sym_LT_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(832), + [anon_sym_match] = ACTIONS(832), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(832), + [anon_sym_for] = ACTIONS(832), + [anon_sym_transform] = ACTIONS(832), + [anon_sym_filter] = ACTIONS(832), + [anon_sym_find] = ACTIONS(832), + [anon_sym_remove] = ACTIONS(832), + [anon_sym_reduce] = ACTIONS(832), + [anon_sym_select] = ACTIONS(832), + [anon_sym_insert] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [212] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(204), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(215), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_COMMA] = ACTIONS(211), [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_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [213] = { - [sym_statement] = STATE(209), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1525), + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(211), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(323), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(326), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(332), - [sym_string] = ACTIONS(332), - [anon_sym_true] = ACTIONS(335), - [anon_sym_false] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(338), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_elseif] = ACTIONS(318), - [anon_sym_else] = ACTIONS(341), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_transform] = ACTIONS(1540), - [anon_sym_filter] = ACTIONS(1543), - [anon_sym_find] = ACTIONS(1546), - [anon_sym_remove] = ACTIONS(1549), - [anon_sym_reduce] = ACTIONS(1552), - [anon_sym_select] = ACTIONS(1555), - [anon_sym_insert] = ACTIONS(953), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(962), - [anon_sym_assert_equal] = ACTIONS(962), - [anon_sym_download] = ACTIONS(962), - [anon_sym_help] = ACTIONS(962), - [anon_sym_length] = ACTIONS(962), - [anon_sym_output] = ACTIONS(962), - [anon_sym_output_error] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_append] = ACTIONS(962), - [anon_sym_metadata] = ACTIONS(962), - [anon_sym_move] = ACTIONS(962), - [anon_sym_read] = ACTIONS(962), - [anon_sym_workdir] = ACTIONS(962), - [anon_sym_write] = ACTIONS(962), - [anon_sym_from_json] = ACTIONS(962), - [anon_sym_to_json] = ACTIONS(962), - [anon_sym_to_string] = ACTIONS(962), - [anon_sym_to_float] = ACTIONS(962), - [anon_sym_bash] = ACTIONS(962), - [anon_sym_fish] = ACTIONS(962), - [anon_sym_raw] = ACTIONS(962), - [anon_sym_sh] = ACTIONS(962), - [anon_sym_zsh] = ACTIONS(962), - [anon_sym_random] = ACTIONS(962), - [anon_sym_random_boolean] = ACTIONS(962), - [anon_sym_random_float] = ACTIONS(962), - [anon_sym_random_integer] = ACTIONS(962), - [anon_sym_columns] = ACTIONS(962), - [anon_sym_rows] = ACTIONS(962), - [anon_sym_reverse] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [214] = { - [sym_expression] = STATE(443), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(212), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(1076), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [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_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_async] = ACTIONS(778), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1079), + [anon_sym_EQ_GT] = ACTIONS(784), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1085), + [anon_sym_transform] = ACTIONS(1088), + [anon_sym_filter] = ACTIONS(1091), + [anon_sym_find] = ACTIONS(1094), + [anon_sym_remove] = ACTIONS(1097), + [anon_sym_reduce] = ACTIONS(1100), + [anon_sym_select] = ACTIONS(1103), + [anon_sym_insert] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_table] = ACTIONS(814), + [anon_sym_assert] = ACTIONS(817), + [anon_sym_assert_equal] = ACTIONS(817), + [anon_sym_download] = ACTIONS(817), + [anon_sym_help] = ACTIONS(817), + [anon_sym_length] = ACTIONS(817), + [anon_sym_output] = ACTIONS(817), + [anon_sym_output_error] = ACTIONS(817), + [anon_sym_type] = ACTIONS(817), + [anon_sym_append] = ACTIONS(817), + [anon_sym_metadata] = ACTIONS(817), + [anon_sym_move] = ACTIONS(817), + [anon_sym_read] = ACTIONS(817), + [anon_sym_workdir] = ACTIONS(817), + [anon_sym_write] = ACTIONS(817), + [anon_sym_from_json] = ACTIONS(817), + [anon_sym_to_json] = ACTIONS(817), + [anon_sym_to_string] = ACTIONS(817), + [anon_sym_to_float] = ACTIONS(817), + [anon_sym_bash] = ACTIONS(817), + [anon_sym_fish] = ACTIONS(817), + [anon_sym_raw] = ACTIONS(817), + [anon_sym_sh] = ACTIONS(817), + [anon_sym_zsh] = ACTIONS(817), + [anon_sym_random] = ACTIONS(817), + [anon_sym_random_boolean] = ACTIONS(817), + [anon_sym_random_float] = ACTIONS(817), + [anon_sym_random_integer] = ACTIONS(817), + [anon_sym_columns] = ACTIONS(817), + [anon_sym_rows] = ACTIONS(817), + [anon_sym_reverse] = ACTIONS(817), }, [215] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [sym_statement] = STATE(215), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(1106), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(283), + [sym_integer] = ACTIONS(491), + [sym_float] = ACTIONS(494), + [sym_string] = ACTIONS(494), + [anon_sym_true] = ACTIONS(497), + [anon_sym_false] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_async] = ACTIONS(640), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1109), + [anon_sym_EQ_GT] = ACTIONS(646), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1115), + [anon_sym_transform] = ACTIONS(1118), + [anon_sym_filter] = ACTIONS(1121), + [anon_sym_find] = ACTIONS(1124), + [anon_sym_remove] = ACTIONS(1127), + [anon_sym_reduce] = ACTIONS(1130), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_insert] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_table] = ACTIONS(676), + [anon_sym_assert] = ACTIONS(679), + [anon_sym_assert_equal] = ACTIONS(679), + [anon_sym_download] = ACTIONS(679), + [anon_sym_help] = ACTIONS(679), + [anon_sym_length] = ACTIONS(679), + [anon_sym_output] = ACTIONS(679), + [anon_sym_output_error] = ACTIONS(679), + [anon_sym_type] = ACTIONS(679), + [anon_sym_append] = ACTIONS(679), + [anon_sym_metadata] = ACTIONS(679), + [anon_sym_move] = ACTIONS(679), + [anon_sym_read] = ACTIONS(679), + [anon_sym_workdir] = ACTIONS(679), + [anon_sym_write] = ACTIONS(679), + [anon_sym_from_json] = ACTIONS(679), + [anon_sym_to_json] = ACTIONS(679), + [anon_sym_to_string] = ACTIONS(679), + [anon_sym_to_float] = ACTIONS(679), + [anon_sym_bash] = ACTIONS(679), + [anon_sym_fish] = ACTIONS(679), + [anon_sym_raw] = ACTIONS(679), + [anon_sym_sh] = ACTIONS(679), + [anon_sym_zsh] = ACTIONS(679), + [anon_sym_random] = ACTIONS(679), + [anon_sym_random_boolean] = ACTIONS(679), + [anon_sym_random_float] = ACTIONS(679), + [anon_sym_random_integer] = ACTIONS(679), + [anon_sym_columns] = ACTIONS(679), + [anon_sym_rows] = ACTIONS(679), + [anon_sym_reverse] = ACTIONS(679), }, [216] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(219), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(278), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(278), + [aux_sym_map_repeat1] = STATE(876), + [sym_identifier] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1138), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), [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_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [217] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), + [sym_statement] = STATE(233), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(233), + [aux_sym_map_repeat1] = STATE(876), + [sym_identifier] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1392), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_assert_equal] = ACTIONS(1395), - [anon_sym_download] = ACTIONS(1395), - [anon_sym_help] = ACTIONS(1395), - [anon_sym_length] = ACTIONS(1395), - [anon_sym_output] = ACTIONS(1395), - [anon_sym_output_error] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_append] = ACTIONS(1395), - [anon_sym_metadata] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_read] = ACTIONS(1395), - [anon_sym_workdir] = ACTIONS(1395), - [anon_sym_write] = ACTIONS(1395), - [anon_sym_from_json] = ACTIONS(1395), - [anon_sym_to_json] = ACTIONS(1395), - [anon_sym_to_string] = ACTIONS(1395), - [anon_sym_to_float] = ACTIONS(1395), - [anon_sym_bash] = ACTIONS(1395), - [anon_sym_fish] = ACTIONS(1395), - [anon_sym_raw] = ACTIONS(1395), - [anon_sym_sh] = ACTIONS(1395), - [anon_sym_zsh] = ACTIONS(1395), - [anon_sym_random] = ACTIONS(1395), - [anon_sym_random_boolean] = ACTIONS(1395), - [anon_sym_random_float] = ACTIONS(1395), - [anon_sym_random_integer] = ACTIONS(1395), - [anon_sym_columns] = ACTIONS(1395), - [anon_sym_rows] = ACTIONS(1395), - [anon_sym_reverse] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [218] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_statement] = STATE(243), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(243), + [aux_sym_map_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [219] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(226), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(226), + [aux_sym_map_repeat1] = STATE(876), + [sym_identifier] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1138), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), [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_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [220] = { - [sym_expression] = STATE(444), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(217), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(240), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(240), + [aux_sym_map_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1136), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1140), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), [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_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [221] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(223), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [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_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_transform] = ACTIONS(1255), - [anon_sym_filter] = ACTIONS(1255), - [anon_sym_find] = ACTIONS(1255), - [anon_sym_remove] = ACTIONS(1255), - [anon_sym_reduce] = ACTIONS(1255), - [anon_sym_select] = ACTIONS(1255), - [anon_sym_insert] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [222] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1257), - [anon_sym_PERCENT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), - }, - [223] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [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_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_transform] = ACTIONS(1320), - [anon_sym_filter] = ACTIONS(1320), - [anon_sym_find] = ACTIONS(1320), - [anon_sym_remove] = ACTIONS(1320), - [anon_sym_reduce] = ACTIONS(1320), - [anon_sym_select] = ACTIONS(1320), - [anon_sym_insert] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [224] = { - [sym_block] = STATE(224), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(224), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1569), - [sym_integer] = ACTIONS(1572), - [sym_float] = ACTIONS(1575), - [sym_string] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_EQ_GT] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_transform] = ACTIONS(1599), - [anon_sym_filter] = ACTIONS(1602), - [anon_sym_find] = ACTIONS(1605), - [anon_sym_remove] = ACTIONS(1608), - [anon_sym_reduce] = ACTIONS(1611), - [anon_sym_select] = ACTIONS(1614), - [anon_sym_insert] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_table] = ACTIONS(1626), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_assert_equal] = ACTIONS(1629), - [anon_sym_download] = ACTIONS(1629), - [anon_sym_help] = ACTIONS(1629), - [anon_sym_length] = ACTIONS(1629), - [anon_sym_output] = ACTIONS(1629), - [anon_sym_output_error] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_append] = ACTIONS(1629), - [anon_sym_metadata] = ACTIONS(1629), - [anon_sym_move] = ACTIONS(1629), - [anon_sym_read] = ACTIONS(1629), - [anon_sym_workdir] = ACTIONS(1629), - [anon_sym_write] = ACTIONS(1629), - [anon_sym_from_json] = ACTIONS(1629), - [anon_sym_to_json] = ACTIONS(1629), - [anon_sym_to_string] = ACTIONS(1629), - [anon_sym_to_float] = ACTIONS(1629), - [anon_sym_bash] = ACTIONS(1629), - [anon_sym_fish] = ACTIONS(1629), - [anon_sym_raw] = ACTIONS(1629), - [anon_sym_sh] = ACTIONS(1629), - [anon_sym_zsh] = ACTIONS(1629), - [anon_sym_random] = ACTIONS(1629), - [anon_sym_random_boolean] = ACTIONS(1629), - [anon_sym_random_float] = ACTIONS(1629), - [anon_sym_random_integer] = ACTIONS(1629), - [anon_sym_columns] = ACTIONS(1629), - [anon_sym_rows] = ACTIONS(1629), - [anon_sym_reverse] = ACTIONS(1629), - }, - [225] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_identifier] = ACTIONS(1632), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1635), - [anon_sym_EQ_GT] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_transform] = ACTIONS(1644), - [anon_sym_filter] = ACTIONS(1647), - [anon_sym_find] = ACTIONS(1650), - [anon_sym_remove] = ACTIONS(1653), - [anon_sym_reduce] = ACTIONS(1656), - [anon_sym_select] = ACTIONS(1659), - [anon_sym_insert] = ACTIONS(1225), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1234), - [anon_sym_assert_equal] = ACTIONS(1234), - [anon_sym_download] = ACTIONS(1234), - [anon_sym_help] = ACTIONS(1234), - [anon_sym_length] = ACTIONS(1234), - [anon_sym_output] = ACTIONS(1234), - [anon_sym_output_error] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_append] = ACTIONS(1234), - [anon_sym_metadata] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_read] = ACTIONS(1234), - [anon_sym_workdir] = ACTIONS(1234), - [anon_sym_write] = ACTIONS(1234), - [anon_sym_from_json] = ACTIONS(1234), - [anon_sym_to_json] = ACTIONS(1234), - [anon_sym_to_string] = ACTIONS(1234), - [anon_sym_to_float] = ACTIONS(1234), - [anon_sym_bash] = ACTIONS(1234), - [anon_sym_fish] = ACTIONS(1234), - [anon_sym_raw] = ACTIONS(1234), - [anon_sym_sh] = ACTIONS(1234), - [anon_sym_zsh] = ACTIONS(1234), - [anon_sym_random] = ACTIONS(1234), - [anon_sym_random_boolean] = ACTIONS(1234), - [anon_sym_random_float] = ACTIONS(1234), - [anon_sym_random_integer] = ACTIONS(1234), - [anon_sym_columns] = ACTIONS(1234), - [anon_sym_rows] = ACTIONS(1234), - [anon_sym_reverse] = ACTIONS(1234), - }, - [226] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(318), - [sym_identifier] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_EQ_GT] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_transform] = ACTIONS(1677), - [anon_sym_filter] = ACTIONS(1680), - [anon_sym_find] = ACTIONS(1683), - [anon_sym_remove] = ACTIONS(1686), - [anon_sym_reduce] = ACTIONS(1689), - [anon_sym_select] = ACTIONS(1692), - [anon_sym_insert] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_assert_equal] = ACTIONS(1189), - [anon_sym_download] = ACTIONS(1189), - [anon_sym_help] = ACTIONS(1189), - [anon_sym_length] = ACTIONS(1189), - [anon_sym_output] = ACTIONS(1189), - [anon_sym_output_error] = ACTIONS(1189), - [anon_sym_type] = ACTIONS(1189), - [anon_sym_append] = ACTIONS(1189), - [anon_sym_metadata] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1189), - [anon_sym_read] = ACTIONS(1189), - [anon_sym_workdir] = ACTIONS(1189), - [anon_sym_write] = ACTIONS(1189), - [anon_sym_from_json] = ACTIONS(1189), - [anon_sym_to_json] = ACTIONS(1189), - [anon_sym_to_string] = ACTIONS(1189), - [anon_sym_to_float] = ACTIONS(1189), - [anon_sym_bash] = ACTIONS(1189), - [anon_sym_fish] = ACTIONS(1189), - [anon_sym_raw] = ACTIONS(1189), - [anon_sym_sh] = ACTIONS(1189), - [anon_sym_zsh] = ACTIONS(1189), - [anon_sym_random] = ACTIONS(1189), - [anon_sym_random_boolean] = ACTIONS(1189), - [anon_sym_random_float] = ACTIONS(1189), - [anon_sym_random_integer] = ACTIONS(1189), - [anon_sym_columns] = ACTIONS(1189), - [anon_sym_rows] = ACTIONS(1189), - [anon_sym_reverse] = ACTIONS(1189), - }, - [227] = { - [sym_block] = STATE(224), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_root_repeat1] = STATE(224), - [aux_sym_block_repeat1] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(5), + [sym_block] = STATE(455), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -28154,19 +27219,559 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [222] = { + [sym_block] = STATE(801), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [223] = { + [sym_block] = STATE(801), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [224] = { + [sym_block] = STATE(780), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [225] = { + [sym_block] = STATE(767), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [226] = { + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [227] = { + [sym_block] = STATE(456), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -28201,687 +27806,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [228] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1700), + [sym_block] = STATE(803), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(213), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(213), - [sym_integer] = ACTIONS(769), - [sym_float] = ACTIONS(772), - [sym_string] = ACTIONS(772), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_transform] = ACTIONS(1712), - [anon_sym_filter] = ACTIONS(1715), - [anon_sym_find] = ACTIONS(1718), - [anon_sym_remove] = ACTIONS(1721), - [anon_sym_reduce] = ACTIONS(1724), - [anon_sym_select] = ACTIONS(1727), - [anon_sym_insert] = ACTIONS(998), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_table] = ACTIONS(1004), - [anon_sym_assert] = ACTIONS(1007), - [anon_sym_assert_equal] = ACTIONS(1007), - [anon_sym_download] = ACTIONS(1007), - [anon_sym_help] = ACTIONS(1007), - [anon_sym_length] = ACTIONS(1007), - [anon_sym_output] = ACTIONS(1007), - [anon_sym_output_error] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_append] = ACTIONS(1007), - [anon_sym_metadata] = ACTIONS(1007), - [anon_sym_move] = ACTIONS(1007), - [anon_sym_read] = ACTIONS(1007), - [anon_sym_workdir] = ACTIONS(1007), - [anon_sym_write] = ACTIONS(1007), - [anon_sym_from_json] = ACTIONS(1007), - [anon_sym_to_json] = ACTIONS(1007), - [anon_sym_to_string] = ACTIONS(1007), - [anon_sym_to_float] = ACTIONS(1007), - [anon_sym_bash] = ACTIONS(1007), - [anon_sym_fish] = ACTIONS(1007), - [anon_sym_raw] = ACTIONS(1007), - [anon_sym_sh] = ACTIONS(1007), - [anon_sym_zsh] = ACTIONS(1007), - [anon_sym_random] = ACTIONS(1007), - [anon_sym_random_boolean] = ACTIONS(1007), - [anon_sym_random_float] = ACTIONS(1007), - [anon_sym_random_integer] = ACTIONS(1007), - [anon_sym_columns] = ACTIONS(1007), - [anon_sym_rows] = ACTIONS(1007), - [anon_sym_reverse] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [229] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), + [sym_block] = STATE(802), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_transform] = ACTIONS(1745), - [anon_sym_filter] = ACTIONS(1748), - [anon_sym_find] = ACTIONS(1751), - [anon_sym_remove] = ACTIONS(1754), - [anon_sym_reduce] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1760), - [anon_sym_insert] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [230] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [sym_block] = STATE(455), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [231] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1368), + [sym_block] = STATE(388), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1481), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_assert_equal] = ACTIONS(1484), - [anon_sym_download] = ACTIONS(1484), - [anon_sym_help] = ACTIONS(1484), - [anon_sym_length] = ACTIONS(1484), - [anon_sym_output] = ACTIONS(1484), - [anon_sym_output_error] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_append] = ACTIONS(1484), - [anon_sym_metadata] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [anon_sym_read] = ACTIONS(1484), - [anon_sym_workdir] = ACTIONS(1484), - [anon_sym_write] = ACTIONS(1484), - [anon_sym_from_json] = ACTIONS(1484), - [anon_sym_to_json] = ACTIONS(1484), - [anon_sym_to_string] = ACTIONS(1484), - [anon_sym_to_float] = ACTIONS(1484), - [anon_sym_bash] = ACTIONS(1484), - [anon_sym_fish] = ACTIONS(1484), - [anon_sym_raw] = ACTIONS(1484), - [anon_sym_sh] = ACTIONS(1484), - [anon_sym_zsh] = ACTIONS(1484), - [anon_sym_random] = ACTIONS(1484), - [anon_sym_random_boolean] = ACTIONS(1484), - [anon_sym_random_float] = ACTIONS(1484), - [anon_sym_random_integer] = ACTIONS(1484), - [anon_sym_columns] = ACTIONS(1484), - [anon_sym_rows] = ACTIONS(1484), - [anon_sym_reverse] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [232] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), + [sym_block] = STATE(378), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(655), - [anon_sym_COMMA] = ACTIONS(318), - [sym_integer] = ACTIONS(658), - [sym_float] = ACTIONS(661), - [sym_string] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_table] = ACTIONS(1049), - [anon_sym_assert] = ACTIONS(1052), - [anon_sym_assert_equal] = ACTIONS(1052), - [anon_sym_download] = ACTIONS(1052), - [anon_sym_help] = ACTIONS(1052), - [anon_sym_length] = ACTIONS(1052), - [anon_sym_output] = ACTIONS(1052), - [anon_sym_output_error] = ACTIONS(1052), - [anon_sym_type] = ACTIONS(1052), - [anon_sym_append] = ACTIONS(1052), - [anon_sym_metadata] = ACTIONS(1052), - [anon_sym_move] = ACTIONS(1052), - [anon_sym_read] = ACTIONS(1052), - [anon_sym_workdir] = ACTIONS(1052), - [anon_sym_write] = ACTIONS(1052), - [anon_sym_from_json] = ACTIONS(1052), - [anon_sym_to_json] = ACTIONS(1052), - [anon_sym_to_string] = ACTIONS(1052), - [anon_sym_to_float] = ACTIONS(1052), - [anon_sym_bash] = ACTIONS(1052), - [anon_sym_fish] = ACTIONS(1052), - [anon_sym_raw] = ACTIONS(1052), - [anon_sym_sh] = ACTIONS(1052), - [anon_sym_zsh] = ACTIONS(1052), - [anon_sym_random] = ACTIONS(1052), - [anon_sym_random_boolean] = ACTIONS(1052), - [anon_sym_random_float] = ACTIONS(1052), - [anon_sym_random_integer] = ACTIONS(1052), - [anon_sym_columns] = ACTIONS(1052), - [anon_sym_rows] = ACTIONS(1052), - [anon_sym_reverse] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [233] = { - [sym_expression] = STATE(479), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(231), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1398), + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1146), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), [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_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_transform] = ACTIONS(1251), - [anon_sym_filter] = ACTIONS(1251), - [anon_sym_find] = ACTIONS(1251), - [anon_sym_remove] = ACTIONS(1251), - [anon_sym_reduce] = ACTIONS(1251), - [anon_sym_select] = ACTIONS(1251), - [anon_sym_insert] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [234] = { - [sym_statement] = STATE(228), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1733), + [sym_block] = STATE(693), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(318), - [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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [235] = { - [sym_statement] = STATE(258), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(258), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), + [sym_block] = STATE(461), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -28889,181 +28479,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [236] = { - [sym_statement] = STATE(311), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(311), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), + [sym_block] = STATE(684), + [sym_statement] = STATE(204), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(378), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), }, [237] = { - [sym_statement] = STATE(272), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(272), - [aux_sym_map_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(1766), + [sym_block] = STATE(445), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29071,90 +28659,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [238] = { - [sym_statement] = STATE(319), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(319), - [aux_sym_map_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1766), + [sym_block] = STATE(442), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29162,177 +28749,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [239] = { - [sym_statement] = STATE(244), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(244), - [aux_sym_map_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [240] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), + [sym_block] = STATE(395), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -29343,19 +28839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(175), [anon_sym_assert] = ACTIONS(177), @@ -29389,313 +28885,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(177), [anon_sym_reverse] = ACTIONS(177), }, - [241] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(155), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [242] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(158), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [243] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [244] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), + [240] = { + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1148), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29703,19 +28929,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -29749,41 +28975,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(49), [anon_sym_reverse] = ACTIONS(49), }, - [245] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), + [241] = { + [sym_block] = STATE(802), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [242] = { + [sym_block] = STATE(803), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [243] = { + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [244] = { + [sym_block] = STATE(455), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -29793,89 +29289,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), + [anon_sym_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [245] = { + [sym_block] = STATE(456), + [sym_statement] = STATE(20), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [246] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(158), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(442), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -29883,269 +29469,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), }, [247] = { - [sym_block] = STATE(590), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), + [sym_block] = STATE(801), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [248] = { - [sym_block] = STATE(601), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [249] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(1142), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -30153,19 +29559,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [248] = { + [sym_block] = STATE(461), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [249] = { + [sym_block] = STATE(780), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -30200,40 +29786,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [250] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), + [sym_block] = STATE(445), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -30243,19 +29829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -30290,40 +29876,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [251] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(388), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), [anon_sym_LPAREN] = ACTIONS(57), @@ -30333,1076 +29919,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [252] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_block] = STATE(371), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), }, [253] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(100), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(286), + [sym_block] = STATE(368), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), }, [254] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [255] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [256] = { - [sym_block] = STATE(587), - [sym_statement] = STATE(202), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [257] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [258] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [259] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [260] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [261] = { - [sym_block] = STATE(590), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [262] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(159), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [263] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [sym_block] = STATE(395), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -31413,19 +30189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -31459,1120 +30235,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(109), [anon_sym_reverse] = ACTIONS(109), }, - [264] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [265] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(232), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [266] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [267] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(29), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [268] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [269] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(159), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(159), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [270] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(229), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [271] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [272] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [273] = { - [sym_block] = STATE(808), - [sym_statement] = STATE(234), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [274] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(29), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(29), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [275] = { - [sym_block] = STATE(426), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [276] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), + [255] = { + [sym_block] = STATE(378), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), [sym_identifier] = ACTIONS(145), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -32583,19 +30279,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(175), [anon_sym_assert] = ACTIONS(177), @@ -32629,40 +30325,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(177), [anon_sym_reverse] = ACTIONS(177), }, - [277] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), + [256] = { + [sym_block] = STATE(388), + [sym_statement] = STATE(19), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [aux_sym_block_repeat1] = STATE(19), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [257] = { + [sym_block] = STATE(395), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [258] = { + [sym_block] = STATE(378), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [259] = { + [sym_block] = STATE(371), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [260] = { + [sym_block] = STATE(368), + [sym_statement] = STATE(10), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [aux_sym_block_repeat1] = STATE(10), + [sym_identifier] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(143), + [anon_sym_assert_equal] = ACTIONS(143), + [anon_sym_download] = ACTIONS(143), + [anon_sym_help] = ACTIONS(143), + [anon_sym_length] = ACTIONS(143), + [anon_sym_output] = ACTIONS(143), + [anon_sym_output_error] = ACTIONS(143), + [anon_sym_type] = ACTIONS(143), + [anon_sym_append] = ACTIONS(143), + [anon_sym_metadata] = ACTIONS(143), + [anon_sym_move] = ACTIONS(143), + [anon_sym_read] = ACTIONS(143), + [anon_sym_workdir] = ACTIONS(143), + [anon_sym_write] = ACTIONS(143), + [anon_sym_from_json] = ACTIONS(143), + [anon_sym_to_json] = ACTIONS(143), + [anon_sym_to_string] = ACTIONS(143), + [anon_sym_to_float] = ACTIONS(143), + [anon_sym_bash] = ACTIONS(143), + [anon_sym_fish] = ACTIONS(143), + [anon_sym_raw] = ACTIONS(143), + [anon_sym_sh] = ACTIONS(143), + [anon_sym_zsh] = ACTIONS(143), + [anon_sym_random] = ACTIONS(143), + [anon_sym_random_boolean] = ACTIONS(143), + [anon_sym_random_float] = ACTIONS(143), + [anon_sym_random_integer] = ACTIONS(143), + [anon_sym_columns] = ACTIONS(143), + [anon_sym_rows] = ACTIONS(143), + [anon_sym_reverse] = ACTIONS(143), + }, + [261] = { + [sym_block] = STATE(767), + [sym_statement] = STATE(213), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(5), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [262] = { + [sym_block] = STATE(780), + [sym_statement] = STATE(212), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [aux_sym_block_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [263] = { + [sym_block] = STATE(456), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [264] = { + [sym_block] = STATE(445), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [265] = { + [sym_block] = STATE(371), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -32673,19 +31179,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [266] = { + [sym_block] = STATE(368), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [267] = { + [sym_block] = STATE(371), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [268] = { + [sym_block] = STATE(461), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [269] = { + [sym_block] = STATE(368), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(107), + [anon_sym_assert] = ACTIONS(109), + [anon_sym_assert_equal] = ACTIONS(109), + [anon_sym_download] = ACTIONS(109), + [anon_sym_help] = ACTIONS(109), + [anon_sym_length] = ACTIONS(109), + [anon_sym_output] = ACTIONS(109), + [anon_sym_output_error] = ACTIONS(109), + [anon_sym_type] = ACTIONS(109), + [anon_sym_append] = ACTIONS(109), + [anon_sym_metadata] = ACTIONS(109), + [anon_sym_move] = ACTIONS(109), + [anon_sym_read] = ACTIONS(109), + [anon_sym_workdir] = ACTIONS(109), + [anon_sym_write] = ACTIONS(109), + [anon_sym_from_json] = ACTIONS(109), + [anon_sym_to_json] = ACTIONS(109), + [anon_sym_to_string] = ACTIONS(109), + [anon_sym_to_float] = ACTIONS(109), + [anon_sym_bash] = ACTIONS(109), + [anon_sym_fish] = ACTIONS(109), + [anon_sym_raw] = ACTIONS(109), + [anon_sym_sh] = ACTIONS(109), + [anon_sym_zsh] = ACTIONS(109), + [anon_sym_random] = ACTIONS(109), + [anon_sym_random_boolean] = ACTIONS(109), + [anon_sym_random_float] = ACTIONS(109), + [anon_sym_random_integer] = ACTIONS(109), + [anon_sym_columns] = ACTIONS(109), + [anon_sym_rows] = ACTIONS(109), + [anon_sym_reverse] = ACTIONS(109), + }, + [270] = { + [sym_block] = STATE(461), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [271] = { + [sym_block] = STATE(442), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [272] = { + [sym_block] = STATE(802), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [273] = { + [sym_block] = STATE(445), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [274] = { + [sym_block] = STATE(684), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [275] = { + [sym_block] = STATE(455), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [276] = { + [sym_block] = STATE(456), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [277] = { + [sym_block] = STATE(388), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), + [sym_identifier] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -32720,129 +32306,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(109), }, [278] = { - [sym_block] = STATE(601), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), + [sym_statement] = STATE(214), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [279] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), + [sym_block] = STATE(378), + [sym_statement] = STATE(6), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), + [aux_sym_block_repeat1] = STATE(6), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(55), @@ -32853,19 +32439,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -32900,132 +32486,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(109), }, [280] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(8), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), - [aux_sym_block_repeat1] = STATE(8), - [sym_identifier] = ACTIONS(53), + [sym_block] = STATE(803), + [sym_statement] = STATE(27), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [aux_sym_block_repeat1] = STATE(27), + [sym_identifier] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(107), - [anon_sym_assert] = ACTIONS(109), - [anon_sym_assert_equal] = ACTIONS(109), - [anon_sym_download] = ACTIONS(109), - [anon_sym_help] = ACTIONS(109), - [anon_sym_length] = ACTIONS(109), - [anon_sym_output] = ACTIONS(109), - [anon_sym_output_error] = ACTIONS(109), - [anon_sym_type] = ACTIONS(109), - [anon_sym_append] = ACTIONS(109), - [anon_sym_metadata] = ACTIONS(109), - [anon_sym_move] = ACTIONS(109), - [anon_sym_read] = ACTIONS(109), - [anon_sym_workdir] = ACTIONS(109), - [anon_sym_write] = ACTIONS(109), - [anon_sym_from_json] = ACTIONS(109), - [anon_sym_to_json] = ACTIONS(109), - [anon_sym_to_string] = ACTIONS(109), - [anon_sym_to_float] = ACTIONS(109), - [anon_sym_bash] = ACTIONS(109), - [anon_sym_fish] = ACTIONS(109), - [anon_sym_raw] = ACTIONS(109), - [anon_sym_sh] = ACTIONS(109), - [anon_sym_zsh] = ACTIONS(109), - [anon_sym_random] = ACTIONS(109), - [anon_sym_random_boolean] = ACTIONS(109), - [anon_sym_random_float] = ACTIONS(109), - [anon_sym_random_integer] = ACTIONS(109), - [anon_sym_columns] = ACTIONS(109), - [anon_sym_rows] = ACTIONS(109), - [anon_sym_reverse] = ACTIONS(109), - }, - [281] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(154), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1142), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33033,19 +32529,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [281] = { + [sym_block] = STATE(802), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -33080,42 +32666,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [282] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(160), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(803), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1142), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33123,19 +32709,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -33170,132 +32756,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [283] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), + [sym_block] = STATE(395), + [sym_statement] = STATE(26), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(345), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [284] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(160), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(823), + [sym_block] = STATE(801), + [sym_statement] = STATE(29), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [aux_sym_block_repeat1] = STATE(29), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1142), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33303,19 +32889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -33350,42 +32936,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(49), }, [285] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), + [sym_block] = STATE(442), + [sym_statement] = STATE(15), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [aux_sym_block_repeat1] = STATE(15), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -33393,7 +32979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(77), + [anon_sym_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), [anon_sym_match] = ACTIONS(185), [anon_sym_EQ_GT] = ACTIONS(187), [anon_sym_while] = ACTIONS(189), @@ -33405,77 +32992,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reduce] = ACTIONS(201), [anon_sym_select] = ACTIONS(203), [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [286] = { - [sym_block] = STATE(587), - [sym_statement] = STATE(213), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(483), + [sym_block] = STATE(693), + [sym_statement] = STATE(196), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [aux_sym_block_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -33483,269 +33069,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, [287] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_statement] = STATE(881), + [sym_expression] = STATE(810), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(873), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1013), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(1154), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_transform] = ACTIONS(1164), + [anon_sym_filter] = ACTIONS(1166), + [anon_sym_find] = ACTIONS(1168), + [anon_sym_remove] = ACTIONS(1170), + [anon_sym_reduce] = ACTIONS(1172), + [anon_sym_select] = ACTIONS(1174), + [anon_sym_insert] = ACTIONS(1176), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(1178), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [288] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), + [sym_statement] = STATE(460), + [sym_expression] = STATE(383), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(305), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(185), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_transform] = ACTIONS(193), + [anon_sym_filter] = ACTIONS(195), + [anon_sym_find] = ACTIONS(197), + [anon_sym_remove] = ACTIONS(199), + [anon_sym_reduce] = ACTIONS(201), + [anon_sym_select] = ACTIONS(203), + [anon_sym_insert] = ACTIONS(205), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [289] = { - [sym_block] = STATE(400), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), - [sym_identifier] = ACTIONS(111), + [sym_statement] = STATE(777), + [sym_expression] = STATE(491), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(493), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(621), + [anon_sym_for] = ACTIONS(623), + [anon_sym_transform] = ACTIONS(625), + [anon_sym_filter] = ACTIONS(627), + [anon_sym_find] = ACTIONS(629), + [anon_sym_remove] = ACTIONS(631), + [anon_sym_reduce] = ACTIONS(633), + [anon_sym_select] = ACTIONS(635), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [290] = { + [sym_statement] = STATE(460), + [sym_expression] = STATE(454), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(333), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(952), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(198), + [sym_identifier] = ACTIONS(400), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(402), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(408), + [anon_sym_while] = ACTIONS(410), + [anon_sym_for] = ACTIONS(412), + [anon_sym_transform] = ACTIONS(414), + [anon_sym_filter] = ACTIONS(416), + [anon_sym_find] = ACTIONS(418), + [anon_sym_remove] = ACTIONS(420), + [anon_sym_reduce] = ACTIONS(422), + [anon_sym_select] = ACTIONS(424), + [anon_sym_insert] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(428), + [anon_sym_assert] = ACTIONS(430), + [anon_sym_assert_equal] = ACTIONS(430), + [anon_sym_download] = ACTIONS(430), + [anon_sym_help] = ACTIONS(430), + [anon_sym_length] = ACTIONS(430), + [anon_sym_output] = ACTIONS(430), + [anon_sym_output_error] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_append] = ACTIONS(430), + [anon_sym_metadata] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_read] = ACTIONS(430), + [anon_sym_workdir] = ACTIONS(430), + [anon_sym_write] = ACTIONS(430), + [anon_sym_from_json] = ACTIONS(430), + [anon_sym_to_json] = ACTIONS(430), + [anon_sym_to_string] = ACTIONS(430), + [anon_sym_to_float] = ACTIONS(430), + [anon_sym_bash] = ACTIONS(430), + [anon_sym_fish] = ACTIONS(430), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_sh] = ACTIONS(430), + [anon_sym_zsh] = ACTIONS(430), + [anon_sym_random] = ACTIONS(430), + [anon_sym_random_boolean] = ACTIONS(430), + [anon_sym_random_float] = ACTIONS(430), + [anon_sym_random_integer] = ACTIONS(430), + [anon_sym_columns] = ACTIONS(430), + [anon_sym_rows] = ACTIONS(430), + [anon_sym_reverse] = ACTIONS(430), + }, + [291] = { + [sym_statement] = STATE(777), + [sym_expression] = STATE(810), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(873), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1013), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(1154), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(619), + [anon_sym_EQ_GT] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_transform] = ACTIONS(1164), + [anon_sym_filter] = ACTIONS(1166), + [anon_sym_find] = ACTIONS(1168), + [anon_sym_remove] = ACTIONS(1170), + [anon_sym_reduce] = ACTIONS(1172), + [anon_sym_select] = ACTIONS(1174), + [anon_sym_insert] = ACTIONS(1176), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(1178), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [292] = { + [sym_statement] = STATE(700), + [sym_expression] = STATE(476), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(500), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), + [sym_identifier] = ACTIONS(378), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -33753,19 +33597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(380), + [anon_sym_match] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(384), + [anon_sym_for] = ACTIONS(386), + [anon_sym_transform] = ACTIONS(388), + [anon_sym_filter] = ACTIONS(390), + [anon_sym_find] = ACTIONS(392), + [anon_sym_remove] = ACTIONS(394), + [anon_sym_reduce] = ACTIONS(396), + [anon_sym_select] = ACTIONS(398), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -33799,313 +33643,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(143), [anon_sym_reverse] = ACTIONS(143), }, - [290] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [291] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [292] = { - [sym_block] = STATE(427), - [sym_statement] = STATE(24), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [aux_sym_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, [293] = { - [sym_block] = STATE(430), - [sym_statement] = STATE(14), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [aux_sym_block_repeat1] = STATE(14), + [sym_statement] = STATE(370), + [sym_expression] = STATE(334), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(317), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(953), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(168), [sym_identifier] = ACTIONS(111), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -34113,19 +33685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(113), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(119), + [anon_sym_EQ_GT] = ACTIONS(121), + [anon_sym_while] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_transform] = ACTIONS(127), + [anon_sym_filter] = ACTIONS(129), + [anon_sym_find] = ACTIONS(131), + [anon_sym_remove] = ACTIONS(133), + [anon_sym_reduce] = ACTIONS(135), + [anon_sym_select] = ACTIONS(137), + [anon_sym_insert] = ACTIONS(139), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(141), [anon_sym_assert] = ACTIONS(143), @@ -34160,3532 +33732,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_reverse] = ACTIONS(143), }, [294] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(100), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [295] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(21), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [296] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(153), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [297] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(157), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [298] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(16), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(16), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [299] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(156), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [300] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(21), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [301] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(155), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [302] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(157), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [303] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [304] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(31), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [305] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [306] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(156), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [307] = { - [sym_block] = STATE(470), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [308] = { - [sym_block] = STATE(698), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [309] = { - [sym_block] = STATE(489), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [310] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [311] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [312] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [313] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(153), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [314] = { - [sym_block] = STATE(908), - [sym_statement] = STATE(31), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [aux_sym_block_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [315] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(27), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [aux_sym_block_repeat1] = STATE(27), - [sym_identifier] = ACTIONS(286), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [316] = { - [sym_block] = STATE(484), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [317] = { - [sym_block] = STATE(718), - [sym_statement] = STATE(226), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [318] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [319] = { - [sym_statement] = STATE(225), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [320] = { - [sym_block] = STATE(486), - [sym_statement] = STATE(32), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(32), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [321] = { - [sym_block] = STATE(902), - [sym_statement] = STATE(154), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [aux_sym_block_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [322] = { - [sym_block] = STATE(500), - [sym_statement] = STATE(28), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [aux_sym_block_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [323] = { - [sym_block] = STATE(380), - [sym_statement] = STATE(15), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [aux_sym_block_repeat1] = STATE(15), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(55), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [324] = { - [sym_statement] = STATE(984), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1784), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_transform] = ACTIONS(1796), - [anon_sym_filter] = ACTIONS(1798), - [anon_sym_find] = ACTIONS(1800), - [anon_sym_remove] = ACTIONS(1802), - [anon_sym_reduce] = ACTIONS(1804), - [anon_sym_select] = ACTIONS(1806), - [anon_sym_insert] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1812), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [325] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1784), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_transform] = ACTIONS(1796), - [anon_sym_filter] = ACTIONS(1798), - [anon_sym_find] = ACTIONS(1800), - [anon_sym_remove] = ACTIONS(1802), - [anon_sym_reduce] = ACTIONS(1804), - [anon_sym_select] = ACTIONS(1806), - [anon_sym_insert] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1812), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [326] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(545), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(567), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(847), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(849), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(851), - [anon_sym_for] = ACTIONS(853), - [anon_sym_transform] = ACTIONS(855), - [anon_sym_filter] = ACTIONS(857), - [anon_sym_find] = ACTIONS(859), - [anon_sym_remove] = ACTIONS(861), - [anon_sym_reduce] = ACTIONS(863), - [anon_sym_select] = ACTIONS(865), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [327] = { - [sym_statement] = STATE(574), - [sym_expression] = STATE(511), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(563), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(425), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(429), - [anon_sym_match] = ACTIONS(431), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(433), - [anon_sym_for] = ACTIONS(435), - [anon_sym_transform] = ACTIONS(437), - [anon_sym_filter] = ACTIONS(439), - [anon_sym_find] = ACTIONS(441), - [anon_sym_remove] = ACTIONS(443), - [anon_sym_reduce] = ACTIONS(445), - [anon_sym_select] = ACTIONS(447), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), - }, - [328] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(424), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(375), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1126), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(184), - [sym_identifier] = ACTIONS(145), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_while] = ACTIONS(155), - [anon_sym_for] = ACTIONS(157), - [anon_sym_transform] = ACTIONS(159), - [anon_sym_filter] = ACTIONS(161), - [anon_sym_find] = ACTIONS(163), - [anon_sym_remove] = ACTIONS(165), - [anon_sym_reduce] = ACTIONS(167), - [anon_sym_select] = ACTIONS(169), - [anon_sym_insert] = ACTIONS(171), - [anon_sym_async] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(175), - [anon_sym_assert] = ACTIONS(177), - [anon_sym_assert_equal] = ACTIONS(177), - [anon_sym_download] = ACTIONS(177), - [anon_sym_help] = ACTIONS(177), - [anon_sym_length] = ACTIONS(177), - [anon_sym_output] = ACTIONS(177), - [anon_sym_output_error] = ACTIONS(177), - [anon_sym_type] = ACTIONS(177), - [anon_sym_append] = ACTIONS(177), - [anon_sym_metadata] = ACTIONS(177), - [anon_sym_move] = ACTIONS(177), - [anon_sym_read] = ACTIONS(177), - [anon_sym_workdir] = ACTIONS(177), - [anon_sym_write] = ACTIONS(177), - [anon_sym_from_json] = ACTIONS(177), - [anon_sym_to_json] = ACTIONS(177), - [anon_sym_to_string] = ACTIONS(177), - [anon_sym_to_float] = ACTIONS(177), - [anon_sym_bash] = ACTIONS(177), - [anon_sym_fish] = ACTIONS(177), - [anon_sym_raw] = ACTIONS(177), - [anon_sym_sh] = ACTIONS(177), - [anon_sym_zsh] = ACTIONS(177), - [anon_sym_random] = ACTIONS(177), - [anon_sym_random_boolean] = ACTIONS(177), - [anon_sym_random_float] = ACTIONS(177), - [anon_sym_random_integer] = ACTIONS(177), - [anon_sym_columns] = ACTIONS(177), - [anon_sym_rows] = ACTIONS(177), - [anon_sym_reverse] = ACTIONS(177), - }, - [329] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(417), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(342), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1054), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(195), - [sym_identifier] = ACTIONS(179), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(185), - [anon_sym_EQ_GT] = ACTIONS(187), - [anon_sym_while] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_transform] = ACTIONS(193), - [anon_sym_filter] = ACTIONS(195), - [anon_sym_find] = ACTIONS(197), - [anon_sym_remove] = ACTIONS(199), - [anon_sym_reduce] = ACTIONS(201), - [anon_sym_select] = ACTIONS(203), - [anon_sym_insert] = ACTIONS(205), - [anon_sym_async] = ACTIONS(207), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_assert_equal] = ACTIONS(211), - [anon_sym_download] = ACTIONS(211), - [anon_sym_help] = ACTIONS(211), - [anon_sym_length] = ACTIONS(211), - [anon_sym_output] = ACTIONS(211), - [anon_sym_output_error] = ACTIONS(211), - [anon_sym_type] = ACTIONS(211), - [anon_sym_append] = ACTIONS(211), - [anon_sym_metadata] = ACTIONS(211), - [anon_sym_move] = ACTIONS(211), - [anon_sym_read] = ACTIONS(211), - [anon_sym_workdir] = ACTIONS(211), - [anon_sym_write] = ACTIONS(211), - [anon_sym_from_json] = ACTIONS(211), - [anon_sym_to_json] = ACTIONS(211), - [anon_sym_to_string] = ACTIONS(211), - [anon_sym_to_float] = ACTIONS(211), - [anon_sym_bash] = ACTIONS(211), - [anon_sym_fish] = ACTIONS(211), - [anon_sym_raw] = ACTIONS(211), - [anon_sym_sh] = ACTIONS(211), - [anon_sym_zsh] = ACTIONS(211), - [anon_sym_random] = ACTIONS(211), - [anon_sym_random_boolean] = ACTIONS(211), - [anon_sym_random_float] = ACTIONS(211), - [anon_sym_random_integer] = ACTIONS(211), - [anon_sym_columns] = ACTIONS(211), - [anon_sym_rows] = ACTIONS(211), - [anon_sym_reverse] = ACTIONS(211), - }, - [330] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(448), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(379), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [sym_identifier] = ACTIONS(391), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_transform] = ACTIONS(405), - [anon_sym_filter] = ACTIONS(407), - [anon_sym_find] = ACTIONS(409), - [anon_sym_remove] = ACTIONS(411), - [anon_sym_reduce] = ACTIONS(413), - [anon_sym_select] = ACTIONS(415), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [331] = { - [sym_statement] = STATE(777), - [sym_expression] = STATE(544), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(560), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [sym_identifier] = ACTIONS(5), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(21), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(25), - [anon_sym_for] = ACTIONS(27), - [anon_sym_transform] = ACTIONS(29), - [anon_sym_filter] = ACTIONS(31), - [anon_sym_find] = ACTIONS(33), - [anon_sym_remove] = ACTIONS(35), - [anon_sym_reduce] = ACTIONS(37), - [anon_sym_select] = ACTIONS(39), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(43), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(47), - [anon_sym_assert] = ACTIONS(49), - [anon_sym_assert_equal] = ACTIONS(49), - [anon_sym_download] = ACTIONS(49), - [anon_sym_help] = ACTIONS(49), - [anon_sym_length] = ACTIONS(49), - [anon_sym_output] = ACTIONS(49), - [anon_sym_output_error] = ACTIONS(49), - [anon_sym_type] = ACTIONS(49), - [anon_sym_append] = ACTIONS(49), - [anon_sym_metadata] = ACTIONS(49), - [anon_sym_move] = ACTIONS(49), - [anon_sym_read] = ACTIONS(49), - [anon_sym_workdir] = ACTIONS(49), - [anon_sym_write] = ACTIONS(49), - [anon_sym_from_json] = ACTIONS(49), - [anon_sym_to_json] = ACTIONS(49), - [anon_sym_to_string] = ACTIONS(49), - [anon_sym_to_float] = ACTIONS(49), - [anon_sym_bash] = ACTIONS(49), - [anon_sym_fish] = ACTIONS(49), - [anon_sym_raw] = ACTIONS(49), - [anon_sym_sh] = ACTIONS(49), - [anon_sym_zsh] = ACTIONS(49), - [anon_sym_random] = ACTIONS(49), - [anon_sym_random_boolean] = ACTIONS(49), - [anon_sym_random_float] = ACTIONS(49), - [anon_sym_random_integer] = ACTIONS(49), - [anon_sym_columns] = ACTIONS(49), - [anon_sym_rows] = ACTIONS(49), - [anon_sym_reverse] = ACTIONS(49), - }, - [332] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(512), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(372), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1033), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(216), - [sym_identifier] = ACTIONS(451), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_if] = ACTIONS(149), - [anon_sym_match] = ACTIONS(455), - [anon_sym_EQ_GT] = ACTIONS(457), - [anon_sym_while] = ACTIONS(459), - [anon_sym_for] = ACTIONS(461), - [anon_sym_transform] = ACTIONS(463), - [anon_sym_filter] = ACTIONS(465), - [anon_sym_find] = ACTIONS(467), - [anon_sym_remove] = ACTIONS(469), - [anon_sym_reduce] = ACTIONS(471), - [anon_sym_select] = ACTIONS(473), - [anon_sym_insert] = ACTIONS(475), - [anon_sym_async] = ACTIONS(477), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(479), - [anon_sym_assert] = ACTIONS(481), - [anon_sym_assert_equal] = ACTIONS(481), - [anon_sym_download] = ACTIONS(481), - [anon_sym_help] = ACTIONS(481), - [anon_sym_length] = ACTIONS(481), - [anon_sym_output] = ACTIONS(481), - [anon_sym_output_error] = ACTIONS(481), - [anon_sym_type] = ACTIONS(481), - [anon_sym_append] = ACTIONS(481), - [anon_sym_metadata] = ACTIONS(481), - [anon_sym_move] = ACTIONS(481), - [anon_sym_read] = ACTIONS(481), - [anon_sym_workdir] = ACTIONS(481), - [anon_sym_write] = ACTIONS(481), - [anon_sym_from_json] = ACTIONS(481), - [anon_sym_to_json] = ACTIONS(481), - [anon_sym_to_string] = ACTIONS(481), - [anon_sym_to_float] = ACTIONS(481), - [anon_sym_bash] = ACTIONS(481), - [anon_sym_fish] = ACTIONS(481), - [anon_sym_raw] = ACTIONS(481), - [anon_sym_sh] = ACTIONS(481), - [anon_sym_zsh] = ACTIONS(481), - [anon_sym_random] = ACTIONS(481), - [anon_sym_random_boolean] = ACTIONS(481), - [anon_sym_random_float] = ACTIONS(481), - [anon_sym_random_integer] = ACTIONS(481), - [anon_sym_columns] = ACTIONS(481), - [anon_sym_rows] = ACTIONS(481), - [anon_sym_reverse] = ACTIONS(481), - }, - [333] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(360), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), - [sym_if] = STATE(343), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1201), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(168), + [sym_statement] = STATE(370), + [sym_expression] = STATE(318), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(303), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(991), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(160), [sym_identifier] = ACTIONS(53), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -37693,19 +33773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(77), - [anon_sym_match] = ACTIONS(81), - [anon_sym_EQ_GT] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_transform] = ACTIONS(89), - [anon_sym_filter] = ACTIONS(91), - [anon_sym_find] = ACTIONS(93), - [anon_sym_remove] = ACTIONS(95), - [anon_sym_reduce] = ACTIONS(97), - [anon_sym_select] = ACTIONS(99), - [anon_sym_insert] = ACTIONS(101), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(67), + [anon_sym_if] = ACTIONS(79), + [anon_sym_match] = ACTIONS(83), + [anon_sym_EQ_GT] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_transform] = ACTIONS(91), + [anon_sym_filter] = ACTIONS(93), + [anon_sym_find] = ACTIONS(95), + [anon_sym_remove] = ACTIONS(97), + [anon_sym_reduce] = ACTIONS(99), + [anon_sym_select] = ACTIONS(101), + [anon_sym_insert] = ACTIONS(103), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(107), [anon_sym_assert] = ACTIONS(109), @@ -37739,129 +33819,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(109), [anon_sym_reverse] = ACTIONS(109), }, - [334] = { - [sym_statement] = STATE(574), - [sym_expression] = STATE(488), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(589), - [sym_if_else] = STATE(589), - [sym_if] = STATE(561), - [sym_match] = STATE(589), - [sym_while] = STATE(589), - [sym_for] = STATE(589), - [sym_transform] = STATE(589), - [sym_filter] = STATE(589), - [sym_find] = STATE(589), - [sym_remove] = STATE(589), - [sym_reduce] = STATE(589), - [sym_select] = STATE(589), - [sym_insert] = STATE(589), - [sym_async] = STATE(589), - [sym_identifier_list] = STATE(1071), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(201), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(57), - [sym_integer] = ACTIONS(59), - [sym_float] = ACTIONS(61), - [sym_string] = ACTIONS(61), - [anon_sym_true] = ACTIONS(63), - [anon_sym_false] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(19), - [anon_sym_match] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_while] = ACTIONS(487), - [anon_sym_for] = ACTIONS(489), - [anon_sym_transform] = ACTIONS(491), - [anon_sym_filter] = ACTIONS(493), - [anon_sym_find] = ACTIONS(495), - [anon_sym_remove] = ACTIONS(497), - [anon_sym_reduce] = ACTIONS(499), - [anon_sym_select] = ACTIONS(501), - [anon_sym_insert] = ACTIONS(417), - [anon_sym_async] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_assert_equal] = ACTIONS(423), - [anon_sym_download] = ACTIONS(423), - [anon_sym_help] = ACTIONS(423), - [anon_sym_length] = ACTIONS(423), - [anon_sym_output] = ACTIONS(423), - [anon_sym_output_error] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_append] = ACTIONS(423), - [anon_sym_metadata] = ACTIONS(423), - [anon_sym_move] = ACTIONS(423), - [anon_sym_read] = ACTIONS(423), - [anon_sym_workdir] = ACTIONS(423), - [anon_sym_write] = ACTIONS(423), - [anon_sym_from_json] = ACTIONS(423), - [anon_sym_to_json] = ACTIONS(423), - [anon_sym_to_string] = ACTIONS(423), - [anon_sym_to_float] = ACTIONS(423), - [anon_sym_bash] = ACTIONS(423), - [anon_sym_fish] = ACTIONS(423), - [anon_sym_raw] = ACTIONS(423), - [anon_sym_sh] = ACTIONS(423), - [anon_sym_zsh] = ACTIONS(423), - [anon_sym_random] = ACTIONS(423), - [anon_sym_random_boolean] = ACTIONS(423), - [anon_sym_random_float] = ACTIONS(423), - [anon_sym_random_integer] = ACTIONS(423), - [anon_sym_columns] = ACTIONS(423), - [anon_sym_rows] = ACTIONS(423), - [anon_sym_reverse] = ACTIONS(423), - }, - [335] = { - [sym_statement] = STATE(428), - [sym_expression] = STATE(377), - [sym__expression_kind] = STATE(409), - [sym_value] = STATE(409), - [sym_boolean] = STATE(407), - [sym_list] = STATE(407), - [sym_map] = STATE(407), - [sym_index] = STATE(409), - [sym_math] = STATE(409), - [sym_logic] = STATE(409), - [sym_assignment] = STATE(429), - [sym_if_else] = STATE(429), + [295] = { + [sym_statement] = STATE(370), + [sym_expression] = STATE(432), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), [sym_if] = STATE(345), - [sym_match] = STATE(429), - [sym_while] = STATE(429), - [sym_for] = STATE(429), - [sym_transform] = STATE(429), - [sym_filter] = STATE(429), - [sym_find] = STATE(429), - [sym_remove] = STATE(429), - [sym_reduce] = STATE(429), - [sym_select] = STATE(429), - [sym_insert] = STATE(429), - [sym_async] = STATE(429), - [sym_identifier_list] = STATE(1040), - [sym_table] = STATE(407), - [sym_function] = STATE(407), - [sym_function_call] = STATE(409), - [sym__context_defined_function] = STATE(410), - [sym_built_in_function] = STATE(410), - [sym__built_in_function_name] = STATE(182), - [sym_identifier] = ACTIONS(111), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [sym_identifier] = ACTIONS(249), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(213), [anon_sym_LPAREN] = ACTIONS(57), [sym_integer] = ACTIONS(59), [sym_float] = ACTIONS(61), @@ -37869,87 +33861,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(63), [anon_sym_false] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(117), - [anon_sym_EQ_GT] = ACTIONS(119), - [anon_sym_while] = ACTIONS(121), - [anon_sym_for] = ACTIONS(123), - [anon_sym_transform] = ACTIONS(125), - [anon_sym_filter] = ACTIONS(127), - [anon_sym_find] = ACTIONS(129), - [anon_sym_remove] = ACTIONS(131), - [anon_sym_reduce] = ACTIONS(133), - [anon_sym_select] = ACTIONS(135), - [anon_sym_insert] = ACTIONS(137), - [anon_sym_async] = ACTIONS(139), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(257), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_transform] = ACTIONS(265), + [anon_sym_filter] = ACTIONS(267), + [anon_sym_find] = ACTIONS(269), + [anon_sym_remove] = ACTIONS(271), + [anon_sym_reduce] = ACTIONS(273), + [anon_sym_select] = ACTIONS(275), + [anon_sym_insert] = ACTIONS(277), [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(141), - [anon_sym_assert] = ACTIONS(143), - [anon_sym_assert_equal] = ACTIONS(143), - [anon_sym_download] = ACTIONS(143), - [anon_sym_help] = ACTIONS(143), - [anon_sym_length] = ACTIONS(143), - [anon_sym_output] = ACTIONS(143), - [anon_sym_output_error] = ACTIONS(143), - [anon_sym_type] = ACTIONS(143), - [anon_sym_append] = ACTIONS(143), - [anon_sym_metadata] = ACTIONS(143), - [anon_sym_move] = ACTIONS(143), - [anon_sym_read] = ACTIONS(143), - [anon_sym_workdir] = ACTIONS(143), - [anon_sym_write] = ACTIONS(143), - [anon_sym_from_json] = ACTIONS(143), - [anon_sym_to_json] = ACTIONS(143), - [anon_sym_to_string] = ACTIONS(143), - [anon_sym_to_float] = ACTIONS(143), - [anon_sym_bash] = ACTIONS(143), - [anon_sym_fish] = ACTIONS(143), - [anon_sym_raw] = ACTIONS(143), - [anon_sym_sh] = ACTIONS(143), - [anon_sym_zsh] = ACTIONS(143), - [anon_sym_random] = ACTIONS(143), - [anon_sym_random_boolean] = ACTIONS(143), - [anon_sym_random_float] = ACTIONS(143), - [anon_sym_random_integer] = ACTIONS(143), - [anon_sym_columns] = ACTIONS(143), - [anon_sym_rows] = ACTIONS(143), - [anon_sym_reverse] = ACTIONS(143), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), }, - [336] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(451), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(354), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1234), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(214), - [sym_identifier] = ACTIONS(286), + [296] = { + [sym_statement] = STATE(460), + [sym_expression] = STATE(489), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(357), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [sym_identifier] = ACTIONS(545), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -37957,107 +33949,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_if] = ACTIONS(115), - [anon_sym_match] = ACTIONS(290), - [anon_sym_EQ_GT] = ACTIONS(292), - [anon_sym_while] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_transform] = ACTIONS(298), - [anon_sym_filter] = ACTIONS(300), - [anon_sym_find] = ACTIONS(302), - [anon_sym_remove] = ACTIONS(304), - [anon_sym_reduce] = ACTIONS(306), - [anon_sym_select] = ACTIONS(308), - [anon_sym_insert] = ACTIONS(310), - [anon_sym_async] = ACTIONS(312), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(314), - [anon_sym_assert] = ACTIONS(316), - [anon_sym_assert_equal] = ACTIONS(316), - [anon_sym_download] = ACTIONS(316), - [anon_sym_help] = ACTIONS(316), - [anon_sym_length] = ACTIONS(316), - [anon_sym_output] = ACTIONS(316), - [anon_sym_output_error] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_append] = ACTIONS(316), - [anon_sym_metadata] = ACTIONS(316), - [anon_sym_move] = ACTIONS(316), - [anon_sym_read] = ACTIONS(316), - [anon_sym_workdir] = ACTIONS(316), - [anon_sym_write] = ACTIONS(316), - [anon_sym_from_json] = ACTIONS(316), - [anon_sym_to_json] = ACTIONS(316), - [anon_sym_to_string] = ACTIONS(316), - [anon_sym_to_float] = ACTIONS(316), - [anon_sym_bash] = ACTIONS(316), - [anon_sym_fish] = ACTIONS(316), - [anon_sym_raw] = ACTIONS(316), - [anon_sym_sh] = ACTIONS(316), - [anon_sym_zsh] = ACTIONS(316), - [anon_sym_random] = ACTIONS(316), - [anon_sym_random_boolean] = ACTIONS(316), - [anon_sym_random_float] = ACTIONS(316), - [anon_sym_random_integer] = ACTIONS(316), - [anon_sym_columns] = ACTIONS(316), - [anon_sym_rows] = ACTIONS(316), - [anon_sym_reverse] = ACTIONS(316), - }, - [337] = { - [sym_statement] = STATE(476), - [sym_expression] = STATE(521), - [sym__expression_kind] = STATE(466), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment] = STATE(493), - [sym_if_else] = STATE(493), - [sym_if] = STATE(399), - [sym_match] = STATE(493), - [sym_while] = STATE(493), - [sym_for] = STATE(493), - [sym_transform] = STATE(493), - [sym_filter] = STATE(493), - [sym_find] = STATE(493), - [sym_remove] = STATE(493), - [sym_reduce] = STATE(493), - [sym_select] = STATE(493), - [sym_insert] = STATE(493), - [sym_async] = STATE(493), - [sym_identifier_list] = STATE(1172), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(221), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(827), - [anon_sym_EQ_GT] = ACTIONS(23), - [anon_sym_while] = ACTIONS(829), - [anon_sym_for] = ACTIONS(831), - [anon_sym_transform] = ACTIONS(833), - [anon_sym_filter] = ACTIONS(835), - [anon_sym_find] = ACTIONS(837), - [anon_sym_remove] = ACTIONS(839), - [anon_sym_reduce] = ACTIONS(841), - [anon_sym_select] = ACTIONS(843), - [anon_sym_insert] = ACTIONS(41), - [anon_sym_async] = ACTIONS(845), + [anon_sym_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(255), + [anon_sym_match] = ACTIONS(549), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(551), + [anon_sym_for] = ACTIONS(553), + [anon_sym_transform] = ACTIONS(555), + [anon_sym_filter] = ACTIONS(557), + [anon_sym_find] = ACTIONS(559), + [anon_sym_remove] = ACTIONS(561), + [anon_sym_reduce] = ACTIONS(563), + [anon_sym_select] = ACTIONS(565), + [anon_sym_insert] = ACTIONS(43), [anon_sym_PIPE] = ACTIONS(45), [anon_sym_table] = ACTIONS(47), [anon_sym_assert] = ACTIONS(49), @@ -38091,16047 +33995,14732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rows] = ACTIONS(49), [anon_sym_reverse] = ACTIONS(49), }, - [338] = { - [sym_statement] = STATE(984), - [sym_expression] = STATE(914), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_assignment] = STATE(861), - [sym_if_else] = STATE(861), - [sym_if] = STATE(979), - [sym_match] = STATE(861), - [sym_while] = STATE(861), - [sym_for] = STATE(861), - [sym_transform] = STATE(861), - [sym_filter] = STATE(861), - [sym_find] = STATE(861), - [sym_remove] = STATE(861), - [sym_reduce] = STATE(861), - [sym_select] = STATE(861), - [sym_insert] = STATE(861), - [sym_async] = STATE(861), - [sym_identifier_list] = STATE(1052), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1816), + [297] = { + [sym_statement] = STATE(777), + [sym_expression] = STATE(490), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(503), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(977), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(209), + [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1822), - [sym_integer] = ACTIONS(1825), - [sym_float] = ACTIONS(1828), - [sym_string] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_transform] = ACTIONS(1852), - [anon_sym_filter] = ACTIONS(1855), - [anon_sym_find] = ACTIONS(1858), - [anon_sym_remove] = ACTIONS(1861), - [anon_sym_reduce] = ACTIONS(1864), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_insert] = ACTIONS(1870), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_table] = ACTIONS(1879), - [anon_sym_assert] = ACTIONS(1882), - [anon_sym_assert_equal] = ACTIONS(1882), - [anon_sym_download] = ACTIONS(1882), - [anon_sym_help] = ACTIONS(1882), - [anon_sym_length] = ACTIONS(1882), - [anon_sym_output] = ACTIONS(1882), - [anon_sym_output_error] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_append] = ACTIONS(1882), - [anon_sym_metadata] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1882), - [anon_sym_read] = ACTIONS(1882), - [anon_sym_workdir] = ACTIONS(1882), - [anon_sym_write] = ACTIONS(1882), - [anon_sym_from_json] = ACTIONS(1882), - [anon_sym_to_json] = ACTIONS(1882), - [anon_sym_to_string] = ACTIONS(1882), - [anon_sym_to_float] = ACTIONS(1882), - [anon_sym_bash] = ACTIONS(1882), - [anon_sym_fish] = ACTIONS(1882), - [anon_sym_raw] = ACTIONS(1882), - [anon_sym_sh] = ACTIONS(1882), - [anon_sym_zsh] = ACTIONS(1882), - [anon_sym_random] = ACTIONS(1882), - [anon_sym_random_boolean] = ACTIONS(1882), - [anon_sym_random_float] = ACTIONS(1882), - [anon_sym_random_integer] = ACTIONS(1882), - [anon_sym_columns] = ACTIONS(1882), - [anon_sym_rows] = ACTIONS(1882), - [anon_sym_reverse] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(23), + [anon_sym_EQ_GT] = ACTIONS(25), + [anon_sym_while] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_transform] = ACTIONS(31), + [anon_sym_filter] = ACTIONS(33), + [anon_sym_find] = ACTIONS(35), + [anon_sym_remove] = ACTIONS(37), + [anon_sym_reduce] = ACTIONS(39), + [anon_sym_select] = ACTIONS(41), + [anon_sym_insert] = ACTIONS(43), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(47), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), + }, + [298] = { + [sym_statement] = STATE(700), + [sym_expression] = STATE(479), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(714), + [sym_if_else] = STATE(714), + [sym_if] = STATE(492), + [sym_match] = STATE(714), + [sym_while] = STATE(714), + [sym_for] = STATE(714), + [sym_transform] = STATE(714), + [sym_filter] = STATE(714), + [sym_find] = STATE(714), + [sym_remove] = STATE(714), + [sym_reduce] = STATE(714), + [sym_select] = STATE(714), + [sym_insert] = STATE(714), + [sym_identifier_list] = STATE(946), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(191), + [sym_identifier] = ACTIONS(356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(251), + [anon_sym_if] = ACTIONS(21), + [anon_sym_match] = ACTIONS(360), + [anon_sym_EQ_GT] = ACTIONS(259), + [anon_sym_while] = ACTIONS(362), + [anon_sym_for] = ACTIONS(364), + [anon_sym_transform] = ACTIONS(366), + [anon_sym_filter] = ACTIONS(368), + [anon_sym_find] = ACTIONS(370), + [anon_sym_remove] = ACTIONS(372), + [anon_sym_reduce] = ACTIONS(374), + [anon_sym_select] = ACTIONS(376), + [anon_sym_insert] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_assert_equal] = ACTIONS(281), + [anon_sym_download] = ACTIONS(281), + [anon_sym_help] = ACTIONS(281), + [anon_sym_length] = ACTIONS(281), + [anon_sym_output] = ACTIONS(281), + [anon_sym_output_error] = ACTIONS(281), + [anon_sym_type] = ACTIONS(281), + [anon_sym_append] = ACTIONS(281), + [anon_sym_metadata] = ACTIONS(281), + [anon_sym_move] = ACTIONS(281), + [anon_sym_read] = ACTIONS(281), + [anon_sym_workdir] = ACTIONS(281), + [anon_sym_write] = ACTIONS(281), + [anon_sym_from_json] = ACTIONS(281), + [anon_sym_to_json] = ACTIONS(281), + [anon_sym_to_string] = ACTIONS(281), + [anon_sym_to_float] = ACTIONS(281), + [anon_sym_bash] = ACTIONS(281), + [anon_sym_fish] = ACTIONS(281), + [anon_sym_raw] = ACTIONS(281), + [anon_sym_sh] = ACTIONS(281), + [anon_sym_zsh] = ACTIONS(281), + [anon_sym_random] = ACTIONS(281), + [anon_sym_random_boolean] = ACTIONS(281), + [anon_sym_random_float] = ACTIONS(281), + [anon_sym_random_integer] = ACTIONS(281), + [anon_sym_columns] = ACTIONS(281), + [anon_sym_rows] = ACTIONS(281), + [anon_sym_reverse] = ACTIONS(281), + }, + [299] = { + [sym_statement] = STATE(370), + [sym_expression] = STATE(365), + [sym__expression_kind] = STATE(341), + [sym_value] = STATE(341), + [sym_boolean] = STATE(386), + [sym_list] = STATE(386), + [sym_map] = STATE(386), + [sym_future] = STATE(386), + [sym_index] = STATE(341), + [sym_math] = STATE(341), + [sym_logic] = STATE(341), + [sym_assignment] = STATE(366), + [sym_if_else] = STATE(366), + [sym_if] = STATE(322), + [sym_match] = STATE(366), + [sym_while] = STATE(366), + [sym_for] = STATE(366), + [sym_transform] = STATE(366), + [sym_filter] = STATE(366), + [sym_find] = STATE(366), + [sym_remove] = STATE(366), + [sym_reduce] = STATE(366), + [sym_select] = STATE(366), + [sym_insert] = STATE(366), + [sym_identifier_list] = STATE(1047), + [sym_table] = STATE(386), + [sym_function] = STATE(386), + [sym_function_call] = STATE(341), + [sym__context_defined_function] = STATE(346), + [sym_built_in_function] = STATE(346), + [sym__built_in_function_name] = STATE(177), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(57), + [sym_integer] = ACTIONS(59), + [sym_float] = ACTIONS(61), + [sym_string] = ACTIONS(61), + [anon_sym_true] = ACTIONS(63), + [anon_sym_false] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_async] = ACTIONS(147), + [anon_sym_if] = ACTIONS(151), + [anon_sym_match] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_while] = ACTIONS(157), + [anon_sym_for] = ACTIONS(159), + [anon_sym_transform] = ACTIONS(161), + [anon_sym_filter] = ACTIONS(163), + [anon_sym_find] = ACTIONS(165), + [anon_sym_remove] = ACTIONS(167), + [anon_sym_reduce] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_insert] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(175), + [anon_sym_assert] = ACTIONS(177), + [anon_sym_assert_equal] = ACTIONS(177), + [anon_sym_download] = ACTIONS(177), + [anon_sym_help] = ACTIONS(177), + [anon_sym_length] = ACTIONS(177), + [anon_sym_output] = ACTIONS(177), + [anon_sym_output_error] = ACTIONS(177), + [anon_sym_type] = ACTIONS(177), + [anon_sym_append] = ACTIONS(177), + [anon_sym_metadata] = ACTIONS(177), + [anon_sym_move] = ACTIONS(177), + [anon_sym_read] = ACTIONS(177), + [anon_sym_workdir] = ACTIONS(177), + [anon_sym_write] = ACTIONS(177), + [anon_sym_from_json] = ACTIONS(177), + [anon_sym_to_json] = ACTIONS(177), + [anon_sym_to_string] = ACTIONS(177), + [anon_sym_to_float] = ACTIONS(177), + [anon_sym_bash] = ACTIONS(177), + [anon_sym_fish] = ACTIONS(177), + [anon_sym_raw] = ACTIONS(177), + [anon_sym_sh] = ACTIONS(177), + [anon_sym_zsh] = ACTIONS(177), + [anon_sym_random] = ACTIONS(177), + [anon_sym_random_boolean] = ACTIONS(177), + [anon_sym_random_float] = ACTIONS(177), + [anon_sym_random_integer] = ACTIONS(177), + [anon_sym_columns] = ACTIONS(177), + [anon_sym_rows] = ACTIONS(177), + [anon_sym_reverse] = ACTIONS(177), + }, + [300] = { + [sym_statement] = STATE(460), + [sym_expression] = STATE(435), + [sym__expression_kind] = STATE(475), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment] = STATE(473), + [sym_if_else] = STATE(473), + [sym_if] = STATE(321), + [sym_match] = STATE(473), + [sym_while] = STATE(473), + [sym_for] = STATE(473), + [sym_transform] = STATE(473), + [sym_filter] = STATE(473), + [sym_find] = STATE(473), + [sym_remove] = STATE(473), + [sym_reduce] = STATE(473), + [sym_select] = STATE(473), + [sym_insert] = STATE(473), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_if] = ACTIONS(117), + [anon_sym_match] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_while] = ACTIONS(227), + [anon_sym_for] = ACTIONS(229), + [anon_sym_transform] = ACTIONS(231), + [anon_sym_filter] = ACTIONS(233), + [anon_sym_find] = ACTIONS(235), + [anon_sym_remove] = ACTIONS(237), + [anon_sym_reduce] = ACTIONS(239), + [anon_sym_select] = ACTIONS(241), + [anon_sym_insert] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [301] = { + [sym_statement] = STATE(881), + [sym_expression] = STATE(810), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_assignment] = STATE(774), + [sym_if_else] = STATE(774), + [sym_if] = STATE(873), + [sym_match] = STATE(774), + [sym_while] = STATE(774), + [sym_for] = STATE(774), + [sym_transform] = STATE(774), + [sym_filter] = STATE(774), + [sym_find] = STATE(774), + [sym_remove] = STATE(774), + [sym_reduce] = STATE(774), + [sym_select] = STATE(774), + [sym_insert] = STATE(774), + [sym_identifier_list] = STATE(1013), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1186), + [sym_integer] = ACTIONS(1189), + [sym_float] = ACTIONS(1192), + [sym_string] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_EQ_GT] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_transform] = ACTIONS(1219), + [anon_sym_filter] = ACTIONS(1222), + [anon_sym_find] = ACTIONS(1225), + [anon_sym_remove] = ACTIONS(1228), + [anon_sym_reduce] = ACTIONS(1231), + [anon_sym_select] = ACTIONS(1234), + [anon_sym_insert] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_table] = ACTIONS(1243), + [anon_sym_assert] = ACTIONS(1246), + [anon_sym_assert_equal] = ACTIONS(1246), + [anon_sym_download] = ACTIONS(1246), + [anon_sym_help] = ACTIONS(1246), + [anon_sym_length] = ACTIONS(1246), + [anon_sym_output] = ACTIONS(1246), + [anon_sym_output_error] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_append] = ACTIONS(1246), + [anon_sym_metadata] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_read] = ACTIONS(1246), + [anon_sym_workdir] = ACTIONS(1246), + [anon_sym_write] = ACTIONS(1246), + [anon_sym_from_json] = ACTIONS(1246), + [anon_sym_to_json] = ACTIONS(1246), + [anon_sym_to_string] = ACTIONS(1246), + [anon_sym_to_float] = ACTIONS(1246), + [anon_sym_bash] = ACTIONS(1246), + [anon_sym_fish] = ACTIONS(1246), + [anon_sym_raw] = ACTIONS(1246), + [anon_sym_sh] = ACTIONS(1246), + [anon_sym_zsh] = ACTIONS(1246), + [anon_sym_random] = ACTIONS(1246), + [anon_sym_random_boolean] = ACTIONS(1246), + [anon_sym_random_float] = ACTIONS(1246), + [anon_sym_random_integer] = ACTIONS(1246), + [anon_sym_columns] = ACTIONS(1246), + [anon_sym_rows] = ACTIONS(1246), + [anon_sym_reverse] = ACTIONS(1246), + }, + [302] = { + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_assignment_operator] = STATE(291), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(820), + [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_EQ] = ACTIONS(824), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_PLUS_EQ] = ACTIONS(826), + [anon_sym_DASH_EQ] = ACTIONS(826), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [303] = { + [sym_else_if] = STATE(304), + [sym_else] = STATE(364), + [aux_sym_if_else_repeat1] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [304] = { + [sym_else_if] = STATE(309), + [sym_else] = STATE(379), + [aux_sym_if_else_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [305] = { + [sym_else_if] = STATE(306), + [sym_else] = STATE(466), + [aux_sym_if_else_repeat1] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [306] = { + [sym_else_if] = STATE(309), + [sym_else] = STATE(441), + [aux_sym_if_else_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [307] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_elseif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), + }, + [308] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_elseif] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), + }, + [309] = { + [sym_else_if] = STATE(309), + [aux_sym_if_else_repeat1] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [sym_integer] = ACTIONS(1275), + [sym_float] = ACTIONS(1273), + [sym_string] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_elseif] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_EQ_GT] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_transform] = ACTIONS(1275), + [anon_sym_filter] = ACTIONS(1275), + [anon_sym_find] = ACTIONS(1275), + [anon_sym_remove] = ACTIONS(1275), + [anon_sym_reduce] = ACTIONS(1275), + [anon_sym_select] = ACTIONS(1275), + [anon_sym_insert] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_table] = ACTIONS(1275), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_assert_equal] = ACTIONS(1275), + [anon_sym_download] = ACTIONS(1275), + [anon_sym_help] = ACTIONS(1275), + [anon_sym_length] = ACTIONS(1275), + [anon_sym_output] = ACTIONS(1275), + [anon_sym_output_error] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_append] = ACTIONS(1275), + [anon_sym_metadata] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_read] = ACTIONS(1275), + [anon_sym_workdir] = ACTIONS(1275), + [anon_sym_write] = ACTIONS(1275), + [anon_sym_from_json] = ACTIONS(1275), + [anon_sym_to_json] = ACTIONS(1275), + [anon_sym_to_string] = ACTIONS(1275), + [anon_sym_to_float] = ACTIONS(1275), + [anon_sym_bash] = ACTIONS(1275), + [anon_sym_fish] = ACTIONS(1275), + [anon_sym_raw] = ACTIONS(1275), + [anon_sym_sh] = ACTIONS(1275), + [anon_sym_zsh] = ACTIONS(1275), + [anon_sym_random] = ACTIONS(1275), + [anon_sym_random_boolean] = ACTIONS(1275), + [anon_sym_random_float] = ACTIONS(1275), + [anon_sym_random_integer] = ACTIONS(1275), + [anon_sym_columns] = ACTIONS(1275), + [anon_sym_rows] = ACTIONS(1275), + [anon_sym_reverse] = ACTIONS(1275), + }, + [310] = { + [sym_else_if] = STATE(331), + [sym_else] = STATE(379), + [aux_sym_if_else_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [311] = { + [sym_else_if] = STATE(331), + [sym_else] = STATE(441), + [aux_sym_if_else_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [312] = { + [sym_expression] = STATE(385), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(169), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(820), + [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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), + }, + [313] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_elseif] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), + }, + [314] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1294), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_elseif] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), + }, + [315] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_elseif] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), + }, + [316] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_elseif] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), + }, + [317] = { + [sym_else_if] = STATE(310), + [sym_else] = STATE(364), + [aux_sym_if_else_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [318] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), + }, + [319] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_elseif] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), + }, + [320] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_elseif] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), + }, + [321] = { + [sym_else_if] = STATE(311), + [sym_else] = STATE(466), + [aux_sym_if_else_repeat1] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [322] = { + [sym_else_if] = STATE(326), + [sym_else] = STATE(364), + [aux_sym_if_else_repeat1] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [323] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_elseif] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), + }, + [324] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_elseif] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), + }, + [325] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1294), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_elseif] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), + }, + [326] = { + [sym_else_if] = STATE(360), + [sym_else] = STATE(379), + [aux_sym_if_else_repeat1] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1317), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [327] = { + [sym_math_operator] = STATE(759), + [sym_logic_operator] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1319), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(69), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_elseif] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), + }, + [328] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_elseif] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), + }, + [329] = { + [sym_expression] = STATE(413), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(195), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(820), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), + }, + [330] = { + [sym_else_if] = STATE(360), + [sym_else] = STATE(441), + [aux_sym_if_else_repeat1] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [331] = { + [sym_else_if] = STATE(331), + [aux_sym_if_else_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1273), + [sym_integer] = ACTIONS(1275), + [sym_float] = ACTIONS(1273), + [sym_string] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_elseif] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_EQ_GT] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_transform] = ACTIONS(1275), + [anon_sym_filter] = ACTIONS(1275), + [anon_sym_find] = ACTIONS(1275), + [anon_sym_remove] = ACTIONS(1275), + [anon_sym_reduce] = ACTIONS(1275), + [anon_sym_select] = ACTIONS(1275), + [anon_sym_insert] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_table] = ACTIONS(1275), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_assert_equal] = ACTIONS(1275), + [anon_sym_download] = ACTIONS(1275), + [anon_sym_help] = ACTIONS(1275), + [anon_sym_length] = ACTIONS(1275), + [anon_sym_output] = ACTIONS(1275), + [anon_sym_output_error] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_append] = ACTIONS(1275), + [anon_sym_metadata] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_read] = ACTIONS(1275), + [anon_sym_workdir] = ACTIONS(1275), + [anon_sym_write] = ACTIONS(1275), + [anon_sym_from_json] = ACTIONS(1275), + [anon_sym_to_json] = ACTIONS(1275), + [anon_sym_to_string] = ACTIONS(1275), + [anon_sym_to_float] = ACTIONS(1275), + [anon_sym_bash] = ACTIONS(1275), + [anon_sym_fish] = ACTIONS(1275), + [anon_sym_raw] = ACTIONS(1275), + [anon_sym_sh] = ACTIONS(1275), + [anon_sym_zsh] = ACTIONS(1275), + [anon_sym_random] = ACTIONS(1275), + [anon_sym_random_boolean] = ACTIONS(1275), + [anon_sym_random_float] = ACTIONS(1275), + [anon_sym_random_integer] = ACTIONS(1275), + [anon_sym_columns] = ACTIONS(1275), + [anon_sym_rows] = ACTIONS(1275), + [anon_sym_reverse] = ACTIONS(1275), + }, + [332] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_elseif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), + }, + [333] = { + [sym_else_if] = STATE(330), + [sym_else] = STATE(466), + [aux_sym_if_else_repeat1] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), + }, + [334] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), + }, + [335] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_elseif] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), + }, + [336] = { + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_elseif] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_COMMA] = ACTIONS(1326), + [sym_integer] = ACTIONS(1328), + [sym_float] = ACTIONS(1326), + [sym_string] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_elseif] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_EQ_GT] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_transform] = ACTIONS(1328), + [anon_sym_filter] = ACTIONS(1328), + [anon_sym_find] = ACTIONS(1328), + [anon_sym_remove] = ACTIONS(1328), + [anon_sym_reduce] = ACTIONS(1328), + [anon_sym_select] = ACTIONS(1328), + [anon_sym_insert] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_table] = ACTIONS(1328), + [anon_sym_assert] = ACTIONS(1328), + [anon_sym_assert_equal] = ACTIONS(1328), + [anon_sym_download] = ACTIONS(1328), + [anon_sym_help] = ACTIONS(1328), + [anon_sym_length] = ACTIONS(1328), + [anon_sym_output] = ACTIONS(1328), + [anon_sym_output_error] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_append] = ACTIONS(1328), + [anon_sym_metadata] = ACTIONS(1328), + [anon_sym_move] = ACTIONS(1328), + [anon_sym_read] = ACTIONS(1328), + [anon_sym_workdir] = ACTIONS(1328), + [anon_sym_write] = ACTIONS(1328), + [anon_sym_from_json] = ACTIONS(1328), + [anon_sym_to_json] = ACTIONS(1328), + [anon_sym_to_string] = ACTIONS(1328), + [anon_sym_to_float] = ACTIONS(1328), + [anon_sym_bash] = ACTIONS(1328), + [anon_sym_fish] = ACTIONS(1328), + [anon_sym_raw] = ACTIONS(1328), + [anon_sym_sh] = ACTIONS(1328), + [anon_sym_zsh] = ACTIONS(1328), + [anon_sym_random] = ACTIONS(1328), + [anon_sym_random_boolean] = ACTIONS(1328), + [anon_sym_random_float] = ACTIONS(1328), + [anon_sym_random_integer] = ACTIONS(1328), + [anon_sym_columns] = ACTIONS(1328), + [anon_sym_rows] = ACTIONS(1328), + [anon_sym_reverse] = ACTIONS(1328), + }, + [338] = { + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, [339] = { - [sym_else_if] = STATE(357), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1330), + [sym_integer] = ACTIONS(1332), + [sym_float] = ACTIONS(1330), + [sym_string] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_elseif] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_EQ_GT] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_transform] = ACTIONS(1332), + [anon_sym_filter] = ACTIONS(1332), + [anon_sym_find] = ACTIONS(1332), + [anon_sym_remove] = ACTIONS(1332), + [anon_sym_reduce] = ACTIONS(1332), + [anon_sym_select] = ACTIONS(1332), + [anon_sym_insert] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_table] = ACTIONS(1332), + [anon_sym_assert] = ACTIONS(1332), + [anon_sym_assert_equal] = ACTIONS(1332), + [anon_sym_download] = ACTIONS(1332), + [anon_sym_help] = ACTIONS(1332), + [anon_sym_length] = ACTIONS(1332), + [anon_sym_output] = ACTIONS(1332), + [anon_sym_output_error] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_append] = ACTIONS(1332), + [anon_sym_metadata] = ACTIONS(1332), + [anon_sym_move] = ACTIONS(1332), + [anon_sym_read] = ACTIONS(1332), + [anon_sym_workdir] = ACTIONS(1332), + [anon_sym_write] = ACTIONS(1332), + [anon_sym_from_json] = ACTIONS(1332), + [anon_sym_to_json] = ACTIONS(1332), + [anon_sym_to_string] = ACTIONS(1332), + [anon_sym_to_float] = ACTIONS(1332), + [anon_sym_bash] = ACTIONS(1332), + [anon_sym_fish] = ACTIONS(1332), + [anon_sym_raw] = ACTIONS(1332), + [anon_sym_sh] = ACTIONS(1332), + [anon_sym_zsh] = ACTIONS(1332), + [anon_sym_random] = ACTIONS(1332), + [anon_sym_random_boolean] = ACTIONS(1332), + [anon_sym_random_float] = ACTIONS(1332), + [anon_sym_random_integer] = ACTIONS(1332), + [anon_sym_columns] = ACTIONS(1332), + [anon_sym_rows] = ACTIONS(1332), + [anon_sym_reverse] = ACTIONS(1332), }, [340] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(376), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_assignment_operator] = STATE(325), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), + [sym_expression] = STATE(838), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(400), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [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_EQ] = ACTIONS(1241), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_PLUS_EQ] = ACTIONS(1243), - [anon_sym_DASH_EQ] = ACTIONS(1243), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [341] = { - [sym_else_if] = STATE(357), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1334), + [sym_integer] = ACTIONS(1336), + [sym_float] = ACTIONS(1334), + [sym_string] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_elseif] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_EQ_GT] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_transform] = ACTIONS(1336), + [anon_sym_filter] = ACTIONS(1336), + [anon_sym_find] = ACTIONS(1336), + [anon_sym_remove] = ACTIONS(1336), + [anon_sym_reduce] = ACTIONS(1336), + [anon_sym_select] = ACTIONS(1336), + [anon_sym_insert] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_table] = ACTIONS(1336), + [anon_sym_assert] = ACTIONS(1336), + [anon_sym_assert_equal] = ACTIONS(1336), + [anon_sym_download] = ACTIONS(1336), + [anon_sym_help] = ACTIONS(1336), + [anon_sym_length] = ACTIONS(1336), + [anon_sym_output] = ACTIONS(1336), + [anon_sym_output_error] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_append] = ACTIONS(1336), + [anon_sym_metadata] = ACTIONS(1336), + [anon_sym_move] = ACTIONS(1336), + [anon_sym_read] = ACTIONS(1336), + [anon_sym_workdir] = ACTIONS(1336), + [anon_sym_write] = ACTIONS(1336), + [anon_sym_from_json] = ACTIONS(1336), + [anon_sym_to_json] = ACTIONS(1336), + [anon_sym_to_string] = ACTIONS(1336), + [anon_sym_to_float] = ACTIONS(1336), + [anon_sym_bash] = ACTIONS(1336), + [anon_sym_fish] = ACTIONS(1336), + [anon_sym_raw] = ACTIONS(1336), + [anon_sym_sh] = ACTIONS(1336), + [anon_sym_zsh] = ACTIONS(1336), + [anon_sym_random] = ACTIONS(1336), + [anon_sym_random_boolean] = ACTIONS(1336), + [anon_sym_random_float] = ACTIONS(1336), + [anon_sym_random_integer] = ACTIONS(1336), + [anon_sym_columns] = ACTIONS(1336), + [anon_sym_rows] = ACTIONS(1336), + [anon_sym_reverse] = ACTIONS(1336), }, [342] = { - [sym_else_if] = STATE(341), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [sym_expression] = STATE(849), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [343] = { - [sym_else_if] = STATE(339), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(1338), + [sym_integer] = ACTIONS(1340), + [sym_float] = ACTIONS(1338), + [sym_string] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_COLON] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_elseif] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_transform] = ACTIONS(1340), + [anon_sym_filter] = ACTIONS(1340), + [anon_sym_find] = ACTIONS(1340), + [anon_sym_remove] = ACTIONS(1340), + [anon_sym_reduce] = ACTIONS(1340), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_insert] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_table] = ACTIONS(1340), + [anon_sym_assert] = ACTIONS(1340), + [anon_sym_assert_equal] = ACTIONS(1340), + [anon_sym_download] = ACTIONS(1340), + [anon_sym_help] = ACTIONS(1340), + [anon_sym_length] = ACTIONS(1340), + [anon_sym_output] = ACTIONS(1340), + [anon_sym_output_error] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_append] = ACTIONS(1340), + [anon_sym_metadata] = ACTIONS(1340), + [anon_sym_move] = ACTIONS(1340), + [anon_sym_read] = ACTIONS(1340), + [anon_sym_workdir] = ACTIONS(1340), + [anon_sym_write] = ACTIONS(1340), + [anon_sym_from_json] = ACTIONS(1340), + [anon_sym_to_json] = ACTIONS(1340), + [anon_sym_to_string] = ACTIONS(1340), + [anon_sym_to_float] = ACTIONS(1340), + [anon_sym_bash] = ACTIONS(1340), + [anon_sym_fish] = ACTIONS(1340), + [anon_sym_raw] = ACTIONS(1340), + [anon_sym_sh] = ACTIONS(1340), + [anon_sym_zsh] = ACTIONS(1340), + [anon_sym_random] = ACTIONS(1340), + [anon_sym_random_boolean] = ACTIONS(1340), + [anon_sym_random_float] = ACTIONS(1340), + [anon_sym_random_integer] = ACTIONS(1340), + [anon_sym_columns] = ACTIONS(1340), + [anon_sym_rows] = ACTIONS(1340), + [anon_sym_reverse] = ACTIONS(1340), }, [344] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1344), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [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_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_COMMA] = ACTIONS(1342), + [sym_integer] = ACTIONS(1344), + [sym_float] = ACTIONS(1342), + [sym_string] = ACTIONS(1342), + [anon_sym_true] = ACTIONS(1344), + [anon_sym_false] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_elseif] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_EQ_GT] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_transform] = ACTIONS(1344), + [anon_sym_filter] = ACTIONS(1344), + [anon_sym_find] = ACTIONS(1344), + [anon_sym_remove] = ACTIONS(1344), + [anon_sym_reduce] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1344), + [anon_sym_insert] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_table] = ACTIONS(1344), + [anon_sym_assert] = ACTIONS(1344), + [anon_sym_assert_equal] = ACTIONS(1344), + [anon_sym_download] = ACTIONS(1344), + [anon_sym_help] = ACTIONS(1344), + [anon_sym_length] = ACTIONS(1344), + [anon_sym_output] = ACTIONS(1344), + [anon_sym_output_error] = ACTIONS(1344), + [anon_sym_type] = ACTIONS(1344), + [anon_sym_append] = ACTIONS(1344), + [anon_sym_metadata] = ACTIONS(1344), + [anon_sym_move] = ACTIONS(1344), + [anon_sym_read] = ACTIONS(1344), + [anon_sym_workdir] = ACTIONS(1344), + [anon_sym_write] = ACTIONS(1344), + [anon_sym_from_json] = ACTIONS(1344), + [anon_sym_to_json] = ACTIONS(1344), + [anon_sym_to_string] = ACTIONS(1344), + [anon_sym_to_float] = ACTIONS(1344), + [anon_sym_bash] = ACTIONS(1344), + [anon_sym_fish] = ACTIONS(1344), + [anon_sym_raw] = ACTIONS(1344), + [anon_sym_sh] = ACTIONS(1344), + [anon_sym_zsh] = ACTIONS(1344), + [anon_sym_random] = ACTIONS(1344), + [anon_sym_random_boolean] = ACTIONS(1344), + [anon_sym_random_float] = ACTIONS(1344), + [anon_sym_random_integer] = ACTIONS(1344), + [anon_sym_columns] = ACTIONS(1344), + [anon_sym_rows] = ACTIONS(1344), + [anon_sym_reverse] = ACTIONS(1344), }, [345] = { - [sym_else_if] = STATE(347), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [sym_else_if] = STATE(367), + [sym_else] = STATE(364), + [aux_sym_if_else_repeat1] = STATE(367), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), }, [346] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [sym_integer] = ACTIONS(1352), + [sym_float] = ACTIONS(1350), + [sym_string] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_COLON] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_elseif] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_EQ_GT] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_transform] = ACTIONS(1352), + [anon_sym_filter] = ACTIONS(1352), + [anon_sym_find] = ACTIONS(1352), + [anon_sym_remove] = ACTIONS(1352), + [anon_sym_reduce] = ACTIONS(1352), + [anon_sym_select] = ACTIONS(1352), + [anon_sym_insert] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_table] = ACTIONS(1352), + [anon_sym_assert] = ACTIONS(1352), + [anon_sym_assert_equal] = ACTIONS(1352), + [anon_sym_download] = ACTIONS(1352), + [anon_sym_help] = ACTIONS(1352), + [anon_sym_length] = ACTIONS(1352), + [anon_sym_output] = ACTIONS(1352), + [anon_sym_output_error] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_append] = ACTIONS(1352), + [anon_sym_metadata] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1352), + [anon_sym_read] = ACTIONS(1352), + [anon_sym_workdir] = ACTIONS(1352), + [anon_sym_write] = ACTIONS(1352), + [anon_sym_from_json] = ACTIONS(1352), + [anon_sym_to_json] = ACTIONS(1352), + [anon_sym_to_string] = ACTIONS(1352), + [anon_sym_to_float] = ACTIONS(1352), + [anon_sym_bash] = ACTIONS(1352), + [anon_sym_fish] = ACTIONS(1352), + [anon_sym_raw] = ACTIONS(1352), + [anon_sym_sh] = ACTIONS(1352), + [anon_sym_zsh] = ACTIONS(1352), + [anon_sym_random] = ACTIONS(1352), + [anon_sym_random_boolean] = ACTIONS(1352), + [anon_sym_random_float] = ACTIONS(1352), + [anon_sym_random_integer] = ACTIONS(1352), + [anon_sym_columns] = ACTIONS(1352), + [anon_sym_rows] = ACTIONS(1352), + [anon_sym_reverse] = ACTIONS(1352), }, [347] = { - [sym_else_if] = STATE(366), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [sym_integer] = ACTIONS(1356), + [sym_float] = ACTIONS(1354), + [sym_string] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_elseif] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_transform] = ACTIONS(1356), + [anon_sym_filter] = ACTIONS(1356), + [anon_sym_find] = ACTIONS(1356), + [anon_sym_remove] = ACTIONS(1356), + [anon_sym_reduce] = ACTIONS(1356), + [anon_sym_select] = ACTIONS(1356), + [anon_sym_insert] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_table] = ACTIONS(1356), + [anon_sym_assert] = ACTIONS(1356), + [anon_sym_assert_equal] = ACTIONS(1356), + [anon_sym_download] = ACTIONS(1356), + [anon_sym_help] = ACTIONS(1356), + [anon_sym_length] = ACTIONS(1356), + [anon_sym_output] = ACTIONS(1356), + [anon_sym_output_error] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_append] = ACTIONS(1356), + [anon_sym_metadata] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1356), + [anon_sym_read] = ACTIONS(1356), + [anon_sym_workdir] = ACTIONS(1356), + [anon_sym_write] = ACTIONS(1356), + [anon_sym_from_json] = ACTIONS(1356), + [anon_sym_to_json] = ACTIONS(1356), + [anon_sym_to_string] = ACTIONS(1356), + [anon_sym_to_float] = ACTIONS(1356), + [anon_sym_bash] = ACTIONS(1356), + [anon_sym_fish] = ACTIONS(1356), + [anon_sym_raw] = ACTIONS(1356), + [anon_sym_sh] = ACTIONS(1356), + [anon_sym_zsh] = ACTIONS(1356), + [anon_sym_random] = ACTIONS(1356), + [anon_sym_random_boolean] = ACTIONS(1356), + [anon_sym_random_float] = ACTIONS(1356), + [anon_sym_random_integer] = ACTIONS(1356), + [anon_sym_columns] = ACTIONS(1356), + [anon_sym_rows] = ACTIONS(1356), + [anon_sym_reverse] = ACTIONS(1356), }, [348] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1368), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1920), - [anon_sym_assert] = ACTIONS(1923), - [anon_sym_assert_equal] = ACTIONS(1923), - [anon_sym_download] = ACTIONS(1923), - [anon_sym_help] = ACTIONS(1923), - [anon_sym_length] = ACTIONS(1923), - [anon_sym_output] = ACTIONS(1923), - [anon_sym_output_error] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_append] = ACTIONS(1923), - [anon_sym_metadata] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_read] = ACTIONS(1923), - [anon_sym_workdir] = ACTIONS(1923), - [anon_sym_write] = ACTIONS(1923), - [anon_sym_from_json] = ACTIONS(1923), - [anon_sym_to_json] = ACTIONS(1923), - [anon_sym_to_string] = ACTIONS(1923), - [anon_sym_to_float] = ACTIONS(1923), - [anon_sym_bash] = ACTIONS(1923), - [anon_sym_fish] = ACTIONS(1923), - [anon_sym_raw] = ACTIONS(1923), - [anon_sym_sh] = ACTIONS(1923), - [anon_sym_zsh] = ACTIONS(1923), - [anon_sym_random] = ACTIONS(1923), - [anon_sym_random_boolean] = ACTIONS(1923), - [anon_sym_random_float] = ACTIONS(1923), - [anon_sym_random_integer] = ACTIONS(1923), - [anon_sym_columns] = ACTIONS(1923), - [anon_sym_rows] = ACTIONS(1923), - [anon_sym_reverse] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_elseif] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, [349] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_elseif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, [350] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [sym_expression] = STATE(833), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(210), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [351] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [sym_else_if] = STATE(424), + [sym_else] = STATE(441), + [aux_sym_if_else_repeat1] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), }, [352] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(344), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [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_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1319), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_elseif] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), }, [353] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1942), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), }, [354] = { - [sym_else_if] = STATE(361), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_RBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, [355] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [sym_expression] = STATE(864), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [356] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, [357] = { - [sym_else_if] = STATE(357), - [aux_sym_if_else_repeat1] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), + [sym_else_if] = STATE(351), + [sym_else] = STATE(466), + [aux_sym_if_else_repeat1] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_elseif] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_transform] = ACTIONS(1251), + [anon_sym_filter] = ACTIONS(1251), + [anon_sym_find] = ACTIONS(1251), + [anon_sym_remove] = ACTIONS(1251), + [anon_sym_reduce] = ACTIONS(1251), + [anon_sym_select] = ACTIONS(1251), + [anon_sym_insert] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_table] = ACTIONS(1251), + [anon_sym_assert] = ACTIONS(1251), + [anon_sym_assert_equal] = ACTIONS(1251), + [anon_sym_download] = ACTIONS(1251), + [anon_sym_help] = ACTIONS(1251), + [anon_sym_length] = ACTIONS(1251), + [anon_sym_output] = ACTIONS(1251), + [anon_sym_output_error] = ACTIONS(1251), + [anon_sym_type] = ACTIONS(1251), + [anon_sym_append] = ACTIONS(1251), + [anon_sym_metadata] = ACTIONS(1251), + [anon_sym_move] = ACTIONS(1251), + [anon_sym_read] = ACTIONS(1251), + [anon_sym_workdir] = ACTIONS(1251), + [anon_sym_write] = ACTIONS(1251), + [anon_sym_from_json] = ACTIONS(1251), + [anon_sym_to_json] = ACTIONS(1251), + [anon_sym_to_string] = ACTIONS(1251), + [anon_sym_to_float] = ACTIONS(1251), + [anon_sym_bash] = ACTIONS(1251), + [anon_sym_fish] = ACTIONS(1251), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_sh] = ACTIONS(1251), + [anon_sym_zsh] = ACTIONS(1251), + [anon_sym_random] = ACTIONS(1251), + [anon_sym_random_boolean] = ACTIONS(1251), + [anon_sym_random_float] = ACTIONS(1251), + [anon_sym_random_integer] = ACTIONS(1251), + [anon_sym_columns] = ACTIONS(1251), + [anon_sym_rows] = ACTIONS(1251), + [anon_sym_reverse] = ACTIONS(1251), }, [358] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [sym_expression] = STATE(858), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [359] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(348), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), + [sym_expression] = STATE(838), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [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_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [360] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_else_if] = STATE(360), + [aux_sym_if_else_repeat1] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [sym_integer] = ACTIONS(1275), + [sym_float] = ACTIONS(1273), + [sym_string] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_elseif] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_EQ_GT] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_transform] = ACTIONS(1275), + [anon_sym_filter] = ACTIONS(1275), + [anon_sym_find] = ACTIONS(1275), + [anon_sym_remove] = ACTIONS(1275), + [anon_sym_reduce] = ACTIONS(1275), + [anon_sym_select] = ACTIONS(1275), + [anon_sym_insert] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_table] = ACTIONS(1275), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_assert_equal] = ACTIONS(1275), + [anon_sym_download] = ACTIONS(1275), + [anon_sym_help] = ACTIONS(1275), + [anon_sym_length] = ACTIONS(1275), + [anon_sym_output] = ACTIONS(1275), + [anon_sym_output_error] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_append] = ACTIONS(1275), + [anon_sym_metadata] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_read] = ACTIONS(1275), + [anon_sym_workdir] = ACTIONS(1275), + [anon_sym_write] = ACTIONS(1275), + [anon_sym_from_json] = ACTIONS(1275), + [anon_sym_to_json] = ACTIONS(1275), + [anon_sym_to_string] = ACTIONS(1275), + [anon_sym_to_float] = ACTIONS(1275), + [anon_sym_bash] = ACTIONS(1275), + [anon_sym_fish] = ACTIONS(1275), + [anon_sym_raw] = ACTIONS(1275), + [anon_sym_sh] = ACTIONS(1275), + [anon_sym_zsh] = ACTIONS(1275), + [anon_sym_random] = ACTIONS(1275), + [anon_sym_random_boolean] = ACTIONS(1275), + [anon_sym_random_float] = ACTIONS(1275), + [anon_sym_random_integer] = ACTIONS(1275), + [anon_sym_columns] = ACTIONS(1275), + [anon_sym_rows] = ACTIONS(1275), + [anon_sym_reverse] = ACTIONS(1275), }, [361] = { - [sym_else_if] = STATE(366), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [sym_expression] = STATE(837), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [362] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_COMMA] = ACTIONS(1318), - [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_RBRACK] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), }, [363] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_elseif] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, [364] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(362), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [anon_sym_COMMA] = ACTIONS(1253), - [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_RBRACK] = ACTIONS(1253), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1257), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), }, [365] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [366] = { - [sym_else_if] = STATE(366), - [aux_sym_if_else_repeat1] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(1970), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [367] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [sym_else_if] = STATE(424), + [sym_else] = STATE(379), + [aux_sym_if_else_repeat1] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_elseif] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), }, [368] = { - [sym_math_operator] = STATE(845), - [sym_logic_operator] = STATE(846), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1973), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1365), + [sym_string] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_elseif] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_transform] = ACTIONS(1367), + [anon_sym_filter] = ACTIONS(1367), + [anon_sym_find] = ACTIONS(1367), + [anon_sym_remove] = ACTIONS(1367), + [anon_sym_reduce] = ACTIONS(1367), + [anon_sym_select] = ACTIONS(1367), + [anon_sym_insert] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_table] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_assert_equal] = ACTIONS(1367), + [anon_sym_download] = ACTIONS(1367), + [anon_sym_help] = ACTIONS(1367), + [anon_sym_length] = ACTIONS(1367), + [anon_sym_output] = ACTIONS(1367), + [anon_sym_output_error] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_append] = ACTIONS(1367), + [anon_sym_metadata] = ACTIONS(1367), + [anon_sym_move] = ACTIONS(1367), + [anon_sym_read] = ACTIONS(1367), + [anon_sym_workdir] = ACTIONS(1367), + [anon_sym_write] = ACTIONS(1367), + [anon_sym_from_json] = ACTIONS(1367), + [anon_sym_to_json] = ACTIONS(1367), + [anon_sym_to_string] = ACTIONS(1367), + [anon_sym_to_float] = ACTIONS(1367), + [anon_sym_bash] = ACTIONS(1367), + [anon_sym_fish] = ACTIONS(1367), + [anon_sym_raw] = ACTIONS(1367), + [anon_sym_sh] = ACTIONS(1367), + [anon_sym_zsh] = ACTIONS(1367), + [anon_sym_random] = ACTIONS(1367), + [anon_sym_random_boolean] = ACTIONS(1367), + [anon_sym_random_float] = ACTIONS(1367), + [anon_sym_random_integer] = ACTIONS(1367), + [anon_sym_columns] = ACTIONS(1367), + [anon_sym_rows] = ACTIONS(1367), + [anon_sym_reverse] = ACTIONS(1367), }, [369] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1942), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_elseif] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, [370] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1369), + [sym_string] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_elseif] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_transform] = ACTIONS(1371), + [anon_sym_filter] = ACTIONS(1371), + [anon_sym_find] = ACTIONS(1371), + [anon_sym_remove] = ACTIONS(1371), + [anon_sym_reduce] = ACTIONS(1371), + [anon_sym_select] = ACTIONS(1371), + [anon_sym_insert] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_table] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_assert_equal] = ACTIONS(1371), + [anon_sym_download] = ACTIONS(1371), + [anon_sym_help] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_output] = ACTIONS(1371), + [anon_sym_output_error] = ACTIONS(1371), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_append] = ACTIONS(1371), + [anon_sym_metadata] = ACTIONS(1371), + [anon_sym_move] = ACTIONS(1371), + [anon_sym_read] = ACTIONS(1371), + [anon_sym_workdir] = ACTIONS(1371), + [anon_sym_write] = ACTIONS(1371), + [anon_sym_from_json] = ACTIONS(1371), + [anon_sym_to_json] = ACTIONS(1371), + [anon_sym_to_string] = ACTIONS(1371), + [anon_sym_to_float] = ACTIONS(1371), + [anon_sym_bash] = ACTIONS(1371), + [anon_sym_fish] = ACTIONS(1371), + [anon_sym_raw] = ACTIONS(1371), + [anon_sym_sh] = ACTIONS(1371), + [anon_sym_zsh] = ACTIONS(1371), + [anon_sym_random] = ACTIONS(1371), + [anon_sym_random_boolean] = ACTIONS(1371), + [anon_sym_random_float] = ACTIONS(1371), + [anon_sym_random_integer] = ACTIONS(1371), + [anon_sym_columns] = ACTIONS(1371), + [anon_sym_rows] = ACTIONS(1371), + [anon_sym_reverse] = ACTIONS(1371), }, [371] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1978), - [anon_sym_assert] = ACTIONS(1981), - [anon_sym_assert_equal] = ACTIONS(1981), - [anon_sym_download] = ACTIONS(1981), - [anon_sym_help] = ACTIONS(1981), - [anon_sym_length] = ACTIONS(1981), - [anon_sym_output] = ACTIONS(1981), - [anon_sym_output_error] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_append] = ACTIONS(1981), - [anon_sym_metadata] = ACTIONS(1981), - [anon_sym_move] = ACTIONS(1981), - [anon_sym_read] = ACTIONS(1981), - [anon_sym_workdir] = ACTIONS(1981), - [anon_sym_write] = ACTIONS(1981), - [anon_sym_from_json] = ACTIONS(1981), - [anon_sym_to_json] = ACTIONS(1981), - [anon_sym_to_string] = ACTIONS(1981), - [anon_sym_to_float] = ACTIONS(1981), - [anon_sym_bash] = ACTIONS(1981), - [anon_sym_fish] = ACTIONS(1981), - [anon_sym_raw] = ACTIONS(1981), - [anon_sym_sh] = ACTIONS(1981), - [anon_sym_zsh] = ACTIONS(1981), - [anon_sym_random] = ACTIONS(1981), - [anon_sym_random_boolean] = ACTIONS(1981), - [anon_sym_random_float] = ACTIONS(1981), - [anon_sym_random_integer] = ACTIONS(1981), - [anon_sym_columns] = ACTIONS(1981), - [anon_sym_rows] = ACTIONS(1981), - [anon_sym_reverse] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1373), + [sym_string] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_elseif] = ACTIONS(1373), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_EQ_GT] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_transform] = ACTIONS(1375), + [anon_sym_filter] = ACTIONS(1375), + [anon_sym_find] = ACTIONS(1375), + [anon_sym_remove] = ACTIONS(1375), + [anon_sym_reduce] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1375), + [anon_sym_insert] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_table] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_assert_equal] = ACTIONS(1375), + [anon_sym_download] = ACTIONS(1375), + [anon_sym_help] = ACTIONS(1375), + [anon_sym_length] = ACTIONS(1375), + [anon_sym_output] = ACTIONS(1375), + [anon_sym_output_error] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_append] = ACTIONS(1375), + [anon_sym_metadata] = ACTIONS(1375), + [anon_sym_move] = ACTIONS(1375), + [anon_sym_read] = ACTIONS(1375), + [anon_sym_workdir] = ACTIONS(1375), + [anon_sym_write] = ACTIONS(1375), + [anon_sym_from_json] = ACTIONS(1375), + [anon_sym_to_json] = ACTIONS(1375), + [anon_sym_to_string] = ACTIONS(1375), + [anon_sym_to_float] = ACTIONS(1375), + [anon_sym_bash] = ACTIONS(1375), + [anon_sym_fish] = ACTIONS(1375), + [anon_sym_raw] = ACTIONS(1375), + [anon_sym_sh] = ACTIONS(1375), + [anon_sym_zsh] = ACTIONS(1375), + [anon_sym_random] = ACTIONS(1375), + [anon_sym_random_boolean] = ACTIONS(1375), + [anon_sym_random_float] = ACTIONS(1375), + [anon_sym_random_integer] = ACTIONS(1375), + [anon_sym_columns] = ACTIONS(1375), + [anon_sym_rows] = ACTIONS(1375), + [anon_sym_reverse] = ACTIONS(1375), }, [372] = { - [sym_else_if] = STATE(374), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [sym_integer] = ACTIONS(1379), + [sym_float] = ACTIONS(1377), + [sym_string] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_elseif] = ACTIONS(1377), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_match] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_transform] = ACTIONS(1379), + [anon_sym_filter] = ACTIONS(1379), + [anon_sym_find] = ACTIONS(1379), + [anon_sym_remove] = ACTIONS(1379), + [anon_sym_reduce] = ACTIONS(1379), + [anon_sym_select] = ACTIONS(1379), + [anon_sym_insert] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_table] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_assert_equal] = ACTIONS(1379), + [anon_sym_download] = ACTIONS(1379), + [anon_sym_help] = ACTIONS(1379), + [anon_sym_length] = ACTIONS(1379), + [anon_sym_output] = ACTIONS(1379), + [anon_sym_output_error] = ACTIONS(1379), + [anon_sym_type] = ACTIONS(1379), + [anon_sym_append] = ACTIONS(1379), + [anon_sym_metadata] = ACTIONS(1379), + [anon_sym_move] = ACTIONS(1379), + [anon_sym_read] = ACTIONS(1379), + [anon_sym_workdir] = ACTIONS(1379), + [anon_sym_write] = ACTIONS(1379), + [anon_sym_from_json] = ACTIONS(1379), + [anon_sym_to_json] = ACTIONS(1379), + [anon_sym_to_string] = ACTIONS(1379), + [anon_sym_to_float] = ACTIONS(1379), + [anon_sym_bash] = ACTIONS(1379), + [anon_sym_fish] = ACTIONS(1379), + [anon_sym_raw] = ACTIONS(1379), + [anon_sym_sh] = ACTIONS(1379), + [anon_sym_zsh] = ACTIONS(1379), + [anon_sym_random] = ACTIONS(1379), + [anon_sym_random_boolean] = ACTIONS(1379), + [anon_sym_random_float] = ACTIONS(1379), + [anon_sym_random_integer] = ACTIONS(1379), + [anon_sym_columns] = ACTIONS(1379), + [anon_sym_rows] = ACTIONS(1379), + [anon_sym_reverse] = ACTIONS(1379), }, [373] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, [374] = { - [sym_else_if] = STATE(391), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [sym_expression] = STATE(844), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(457), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [375] = { - [sym_else_if] = STATE(378), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [sym_expression] = STATE(863), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [376] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(371), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(203), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(820), [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_RBRACK] = ACTIONS(1245), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(187), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [377] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_expression] = STATE(857), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [378] = { - [sym_else_if] = STATE(391), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1381), + [sym_string] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACK] = ACTIONS(1381), + [anon_sym_async] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_elseif] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_EQ_GT] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_transform] = ACTIONS(1383), + [anon_sym_filter] = ACTIONS(1383), + [anon_sym_find] = ACTIONS(1383), + [anon_sym_remove] = ACTIONS(1383), + [anon_sym_reduce] = ACTIONS(1383), + [anon_sym_select] = ACTIONS(1383), + [anon_sym_insert] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_table] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_assert_equal] = ACTIONS(1383), + [anon_sym_download] = ACTIONS(1383), + [anon_sym_help] = ACTIONS(1383), + [anon_sym_length] = ACTIONS(1383), + [anon_sym_output] = ACTIONS(1383), + [anon_sym_output_error] = ACTIONS(1383), + [anon_sym_type] = ACTIONS(1383), + [anon_sym_append] = ACTIONS(1383), + [anon_sym_metadata] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1383), + [anon_sym_read] = ACTIONS(1383), + [anon_sym_workdir] = ACTIONS(1383), + [anon_sym_write] = ACTIONS(1383), + [anon_sym_from_json] = ACTIONS(1383), + [anon_sym_to_json] = ACTIONS(1383), + [anon_sym_to_string] = ACTIONS(1383), + [anon_sym_to_float] = ACTIONS(1383), + [anon_sym_bash] = ACTIONS(1383), + [anon_sym_fish] = ACTIONS(1383), + [anon_sym_raw] = ACTIONS(1383), + [anon_sym_sh] = ACTIONS(1383), + [anon_sym_zsh] = ACTIONS(1383), + [anon_sym_random] = ACTIONS(1383), + [anon_sym_random_boolean] = ACTIONS(1383), + [anon_sym_random_float] = ACTIONS(1383), + [anon_sym_random_integer] = ACTIONS(1383), + [anon_sym_columns] = ACTIONS(1383), + [anon_sym_rows] = ACTIONS(1383), + [anon_sym_reverse] = ACTIONS(1383), }, [379] = { - [sym_else_if] = STATE(421), - [sym_else] = STATE(423), - [aux_sym_if_else_repeat1] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1385), + [sym_string] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_COLON] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_elseif] = ACTIONS(1385), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_transform] = ACTIONS(1387), + [anon_sym_filter] = ACTIONS(1387), + [anon_sym_find] = ACTIONS(1387), + [anon_sym_remove] = ACTIONS(1387), + [anon_sym_reduce] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_insert] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_table] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_assert_equal] = ACTIONS(1387), + [anon_sym_download] = ACTIONS(1387), + [anon_sym_help] = ACTIONS(1387), + [anon_sym_length] = ACTIONS(1387), + [anon_sym_output] = ACTIONS(1387), + [anon_sym_output_error] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_append] = ACTIONS(1387), + [anon_sym_metadata] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1387), + [anon_sym_read] = ACTIONS(1387), + [anon_sym_workdir] = ACTIONS(1387), + [anon_sym_write] = ACTIONS(1387), + [anon_sym_from_json] = ACTIONS(1387), + [anon_sym_to_json] = ACTIONS(1387), + [anon_sym_to_string] = ACTIONS(1387), + [anon_sym_to_float] = ACTIONS(1387), + [anon_sym_bash] = ACTIONS(1387), + [anon_sym_fish] = ACTIONS(1387), + [anon_sym_raw] = ACTIONS(1387), + [anon_sym_sh] = ACTIONS(1387), + [anon_sym_zsh] = ACTIONS(1387), + [anon_sym_random] = ACTIONS(1387), + [anon_sym_random_boolean] = ACTIONS(1387), + [anon_sym_random_float] = ACTIONS(1387), + [anon_sym_random_integer] = ACTIONS(1387), + [anon_sym_columns] = ACTIONS(1387), + [anon_sym_rows] = ACTIONS(1387), + [anon_sym_reverse] = ACTIONS(1387), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(1994), - [sym_integer] = ACTIONS(1996), - [sym_float] = ACTIONS(1994), - [sym_string] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_RBRACK] = ACTIONS(1994), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_elseif] = ACTIONS(1994), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_transform] = ACTIONS(1996), - [anon_sym_filter] = ACTIONS(1996), - [anon_sym_find] = ACTIONS(1996), - [anon_sym_remove] = ACTIONS(1996), - [anon_sym_reduce] = ACTIONS(1996), - [anon_sym_select] = ACTIONS(1996), - [anon_sym_insert] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_table] = ACTIONS(1996), - [anon_sym_assert] = ACTIONS(1996), - [anon_sym_assert_equal] = ACTIONS(1996), - [anon_sym_download] = ACTIONS(1996), - [anon_sym_help] = ACTIONS(1996), - [anon_sym_length] = ACTIONS(1996), - [anon_sym_output] = ACTIONS(1996), - [anon_sym_output_error] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_append] = ACTIONS(1996), - [anon_sym_metadata] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_read] = ACTIONS(1996), - [anon_sym_workdir] = ACTIONS(1996), - [anon_sym_write] = ACTIONS(1996), - [anon_sym_from_json] = ACTIONS(1996), - [anon_sym_to_json] = ACTIONS(1996), - [anon_sym_to_string] = ACTIONS(1996), - [anon_sym_to_float] = ACTIONS(1996), - [anon_sym_bash] = ACTIONS(1996), - [anon_sym_fish] = ACTIONS(1996), - [anon_sym_raw] = ACTIONS(1996), - [anon_sym_sh] = ACTIONS(1996), - [anon_sym_zsh] = ACTIONS(1996), - [anon_sym_random] = ACTIONS(1996), - [anon_sym_random_boolean] = ACTIONS(1996), - [anon_sym_random_float] = ACTIONS(1996), - [anon_sym_random_integer] = ACTIONS(1996), - [anon_sym_columns] = ACTIONS(1996), - [anon_sym_rows] = ACTIONS(1996), - [anon_sym_reverse] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1389), + [sym_string] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_COLON] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_elseif] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_EQ_GT] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_transform] = ACTIONS(1391), + [anon_sym_filter] = ACTIONS(1391), + [anon_sym_find] = ACTIONS(1391), + [anon_sym_remove] = ACTIONS(1391), + [anon_sym_reduce] = ACTIONS(1391), + [anon_sym_select] = ACTIONS(1391), + [anon_sym_insert] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_table] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_assert_equal] = ACTIONS(1391), + [anon_sym_download] = ACTIONS(1391), + [anon_sym_help] = ACTIONS(1391), + [anon_sym_length] = ACTIONS(1391), + [anon_sym_output] = ACTIONS(1391), + [anon_sym_output_error] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_append] = ACTIONS(1391), + [anon_sym_metadata] = ACTIONS(1391), + [anon_sym_move] = ACTIONS(1391), + [anon_sym_read] = ACTIONS(1391), + [anon_sym_workdir] = ACTIONS(1391), + [anon_sym_write] = ACTIONS(1391), + [anon_sym_from_json] = ACTIONS(1391), + [anon_sym_to_json] = ACTIONS(1391), + [anon_sym_to_string] = ACTIONS(1391), + [anon_sym_to_float] = ACTIONS(1391), + [anon_sym_bash] = ACTIONS(1391), + [anon_sym_fish] = ACTIONS(1391), + [anon_sym_raw] = ACTIONS(1391), + [anon_sym_sh] = ACTIONS(1391), + [anon_sym_zsh] = ACTIONS(1391), + [anon_sym_random] = ACTIONS(1391), + [anon_sym_random_boolean] = ACTIONS(1391), + [anon_sym_random_float] = ACTIONS(1391), + [anon_sym_random_integer] = ACTIONS(1391), + [anon_sym_columns] = ACTIONS(1391), + [anon_sym_rows] = ACTIONS(1391), + [anon_sym_reverse] = ACTIONS(1391), }, [381] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_elseif] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), }, [382] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1393), + [sym_string] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_COLON] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_elseif] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_transform] = ACTIONS(1395), + [anon_sym_filter] = ACTIONS(1395), + [anon_sym_find] = ACTIONS(1395), + [anon_sym_remove] = ACTIONS(1395), + [anon_sym_reduce] = ACTIONS(1395), + [anon_sym_select] = ACTIONS(1395), + [anon_sym_insert] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_table] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_assert_equal] = ACTIONS(1395), + [anon_sym_download] = ACTIONS(1395), + [anon_sym_help] = ACTIONS(1395), + [anon_sym_length] = ACTIONS(1395), + [anon_sym_output] = ACTIONS(1395), + [anon_sym_output_error] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_append] = ACTIONS(1395), + [anon_sym_metadata] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_read] = ACTIONS(1395), + [anon_sym_workdir] = ACTIONS(1395), + [anon_sym_write] = ACTIONS(1395), + [anon_sym_from_json] = ACTIONS(1395), + [anon_sym_to_json] = ACTIONS(1395), + [anon_sym_to_string] = ACTIONS(1395), + [anon_sym_to_float] = ACTIONS(1395), + [anon_sym_bash] = ACTIONS(1395), + [anon_sym_fish] = ACTIONS(1395), + [anon_sym_raw] = ACTIONS(1395), + [anon_sym_sh] = ACTIONS(1395), + [anon_sym_zsh] = ACTIONS(1395), + [anon_sym_random] = ACTIONS(1395), + [anon_sym_random_boolean] = ACTIONS(1395), + [anon_sym_random_float] = ACTIONS(1395), + [anon_sym_random_integer] = ACTIONS(1395), + [anon_sym_columns] = ACTIONS(1395), + [anon_sym_rows] = ACTIONS(1395), + [anon_sym_reverse] = ACTIONS(1395), }, [383] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [384] = { - [sym_expression] = STATE(553), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(359), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(928), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [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_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(928), + [sym_float] = ACTIONS(902), + [sym_string] = ACTIONS(902), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(928), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_elseif] = ACTIONS(902), + [anon_sym_else] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(902), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_table] = ACTIONS(928), + [anon_sym_assert] = ACTIONS(928), + [anon_sym_assert_equal] = ACTIONS(928), + [anon_sym_download] = ACTIONS(928), + [anon_sym_help] = ACTIONS(928), + [anon_sym_length] = ACTIONS(928), + [anon_sym_output] = ACTIONS(928), + [anon_sym_output_error] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_append] = ACTIONS(928), + [anon_sym_metadata] = ACTIONS(928), + [anon_sym_move] = ACTIONS(928), + [anon_sym_read] = ACTIONS(928), + [anon_sym_workdir] = ACTIONS(928), + [anon_sym_write] = ACTIONS(928), + [anon_sym_from_json] = ACTIONS(928), + [anon_sym_to_json] = ACTIONS(928), + [anon_sym_to_string] = ACTIONS(928), + [anon_sym_to_float] = ACTIONS(928), + [anon_sym_bash] = ACTIONS(928), + [anon_sym_fish] = ACTIONS(928), + [anon_sym_raw] = ACTIONS(928), + [anon_sym_sh] = ACTIONS(928), + [anon_sym_zsh] = ACTIONS(928), + [anon_sym_random] = ACTIONS(928), + [anon_sym_random_boolean] = ACTIONS(928), + [anon_sym_random_float] = ACTIONS(928), + [anon_sym_random_integer] = ACTIONS(928), + [anon_sym_columns] = ACTIONS(928), + [anon_sym_rows] = ACTIONS(928), + [anon_sym_reverse] = ACTIONS(928), }, [385] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1399), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_COMMA] = ACTIONS(2000), - [sym_integer] = ACTIONS(2002), - [sym_float] = ACTIONS(2000), - [sym_string] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(2000), - [anon_sym_EQ_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_AMP_AMP] = ACTIONS(2000), - [anon_sym_PIPE_PIPE] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_elseif] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_transform] = ACTIONS(2002), - [anon_sym_filter] = ACTIONS(2002), - [anon_sym_find] = ACTIONS(2002), - [anon_sym_remove] = ACTIONS(2002), - [anon_sym_reduce] = ACTIONS(2002), - [anon_sym_select] = ACTIONS(2002), - [anon_sym_insert] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_table] = ACTIONS(2002), - [anon_sym_assert] = ACTIONS(2002), - [anon_sym_assert_equal] = ACTIONS(2002), - [anon_sym_download] = ACTIONS(2002), - [anon_sym_help] = ACTIONS(2002), - [anon_sym_length] = ACTIONS(2002), - [anon_sym_output] = ACTIONS(2002), - [anon_sym_output_error] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_append] = ACTIONS(2002), - [anon_sym_metadata] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [anon_sym_read] = ACTIONS(2002), - [anon_sym_workdir] = ACTIONS(2002), - [anon_sym_write] = ACTIONS(2002), - [anon_sym_from_json] = ACTIONS(2002), - [anon_sym_to_json] = ACTIONS(2002), - [anon_sym_to_string] = ACTIONS(2002), - [anon_sym_to_float] = ACTIONS(2002), - [anon_sym_bash] = ACTIONS(2002), - [anon_sym_fish] = ACTIONS(2002), - [anon_sym_raw] = ACTIONS(2002), - [anon_sym_sh] = ACTIONS(2002), - [anon_sym_zsh] = ACTIONS(2002), - [anon_sym_random] = ACTIONS(2002), - [anon_sym_random_boolean] = ACTIONS(2002), - [anon_sym_random_float] = ACTIONS(2002), - [anon_sym_random_integer] = ACTIONS(2002), - [anon_sym_columns] = ACTIONS(2002), - [anon_sym_rows] = ACTIONS(2002), - [anon_sym_reverse] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [sym_integer] = ACTIONS(1404), + [sym_float] = ACTIONS(1402), + [sym_string] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_COLON] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_SLASH] = ACTIONS(1402), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_elseif] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_EQ_GT] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_transform] = ACTIONS(1404), + [anon_sym_filter] = ACTIONS(1404), + [anon_sym_find] = ACTIONS(1404), + [anon_sym_remove] = ACTIONS(1404), + [anon_sym_reduce] = ACTIONS(1404), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_insert] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_table] = ACTIONS(1404), + [anon_sym_assert] = ACTIONS(1404), + [anon_sym_assert_equal] = ACTIONS(1404), + [anon_sym_download] = ACTIONS(1404), + [anon_sym_help] = ACTIONS(1404), + [anon_sym_length] = ACTIONS(1404), + [anon_sym_output] = ACTIONS(1404), + [anon_sym_output_error] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_append] = ACTIONS(1404), + [anon_sym_metadata] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_read] = ACTIONS(1404), + [anon_sym_workdir] = ACTIONS(1404), + [anon_sym_write] = ACTIONS(1404), + [anon_sym_from_json] = ACTIONS(1404), + [anon_sym_to_json] = ACTIONS(1404), + [anon_sym_to_string] = ACTIONS(1404), + [anon_sym_to_float] = ACTIONS(1404), + [anon_sym_bash] = ACTIONS(1404), + [anon_sym_fish] = ACTIONS(1404), + [anon_sym_raw] = ACTIONS(1404), + [anon_sym_sh] = ACTIONS(1404), + [anon_sym_zsh] = ACTIONS(1404), + [anon_sym_random] = ACTIONS(1404), + [anon_sym_random_boolean] = ACTIONS(1404), + [anon_sym_random_float] = ACTIONS(1404), + [anon_sym_random_integer] = ACTIONS(1404), + [anon_sym_columns] = ACTIONS(1404), + [anon_sym_rows] = ACTIONS(1404), + [anon_sym_reverse] = ACTIONS(1404), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(2004), - [sym_integer] = ACTIONS(2006), - [sym_float] = ACTIONS(2004), - [sym_string] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2004), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_EQ_EQ] = ACTIONS(2004), - [anon_sym_BANG_EQ] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_elseif] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_transform] = ACTIONS(2006), - [anon_sym_filter] = ACTIONS(2006), - [anon_sym_find] = ACTIONS(2006), - [anon_sym_remove] = ACTIONS(2006), - [anon_sym_reduce] = ACTIONS(2006), - [anon_sym_select] = ACTIONS(2006), - [anon_sym_insert] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_table] = ACTIONS(2006), - [anon_sym_assert] = ACTIONS(2006), - [anon_sym_assert_equal] = ACTIONS(2006), - [anon_sym_download] = ACTIONS(2006), - [anon_sym_help] = ACTIONS(2006), - [anon_sym_length] = ACTIONS(2006), - [anon_sym_output] = ACTIONS(2006), - [anon_sym_output_error] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_append] = ACTIONS(2006), - [anon_sym_metadata] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [anon_sym_read] = ACTIONS(2006), - [anon_sym_workdir] = ACTIONS(2006), - [anon_sym_write] = ACTIONS(2006), - [anon_sym_from_json] = ACTIONS(2006), - [anon_sym_to_json] = ACTIONS(2006), - [anon_sym_to_string] = ACTIONS(2006), - [anon_sym_to_float] = ACTIONS(2006), - [anon_sym_bash] = ACTIONS(2006), - [anon_sym_fish] = ACTIONS(2006), - [anon_sym_raw] = ACTIONS(2006), - [anon_sym_sh] = ACTIONS(2006), - [anon_sym_zsh] = ACTIONS(2006), - [anon_sym_random] = ACTIONS(2006), - [anon_sym_random_boolean] = ACTIONS(2006), - [anon_sym_random_float] = ACTIONS(2006), - [anon_sym_random_integer] = ACTIONS(2006), - [anon_sym_columns] = ACTIONS(2006), - [anon_sym_rows] = ACTIONS(2006), - [anon_sym_reverse] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1406), + [sym_string] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1406), + [anon_sym_BANG_EQ] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1406), + [anon_sym_PIPE_PIPE] = ACTIONS(1406), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT_EQ] = ACTIONS(1406), + [anon_sym_LT_EQ] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_elseif] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_EQ_GT] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_transform] = ACTIONS(1408), + [anon_sym_filter] = ACTIONS(1408), + [anon_sym_find] = ACTIONS(1408), + [anon_sym_remove] = ACTIONS(1408), + [anon_sym_reduce] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1408), + [anon_sym_insert] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_table] = ACTIONS(1408), + [anon_sym_assert] = ACTIONS(1408), + [anon_sym_assert_equal] = ACTIONS(1408), + [anon_sym_download] = ACTIONS(1408), + [anon_sym_help] = ACTIONS(1408), + [anon_sym_length] = ACTIONS(1408), + [anon_sym_output] = ACTIONS(1408), + [anon_sym_output_error] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_append] = ACTIONS(1408), + [anon_sym_metadata] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1408), + [anon_sym_read] = ACTIONS(1408), + [anon_sym_workdir] = ACTIONS(1408), + [anon_sym_write] = ACTIONS(1408), + [anon_sym_from_json] = ACTIONS(1408), + [anon_sym_to_json] = ACTIONS(1408), + [anon_sym_to_string] = ACTIONS(1408), + [anon_sym_to_float] = ACTIONS(1408), + [anon_sym_bash] = ACTIONS(1408), + [anon_sym_fish] = ACTIONS(1408), + [anon_sym_raw] = ACTIONS(1408), + [anon_sym_sh] = ACTIONS(1408), + [anon_sym_zsh] = ACTIONS(1408), + [anon_sym_random] = ACTIONS(1408), + [anon_sym_random_boolean] = ACTIONS(1408), + [anon_sym_random_float] = ACTIONS(1408), + [anon_sym_random_integer] = ACTIONS(1408), + [anon_sym_columns] = ACTIONS(1408), + [anon_sym_rows] = ACTIONS(1408), + [anon_sym_reverse] = ACTIONS(1408), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2008), - [sym_string] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2008), - [anon_sym_COLON] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_elseif] = ACTIONS(2008), - [anon_sym_else] = ACTIONS(2010), - [anon_sym_match] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_transform] = ACTIONS(2010), - [anon_sym_filter] = ACTIONS(2010), - [anon_sym_find] = ACTIONS(2010), - [anon_sym_remove] = ACTIONS(2010), - [anon_sym_reduce] = ACTIONS(2010), - [anon_sym_select] = ACTIONS(2010), - [anon_sym_insert] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_table] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_assert_equal] = ACTIONS(2010), - [anon_sym_download] = ACTIONS(2010), - [anon_sym_help] = ACTIONS(2010), - [anon_sym_length] = ACTIONS(2010), - [anon_sym_output] = ACTIONS(2010), - [anon_sym_output_error] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2010), - [anon_sym_append] = ACTIONS(2010), - [anon_sym_metadata] = ACTIONS(2010), - [anon_sym_move] = ACTIONS(2010), - [anon_sym_read] = ACTIONS(2010), - [anon_sym_workdir] = ACTIONS(2010), - [anon_sym_write] = ACTIONS(2010), - [anon_sym_from_json] = ACTIONS(2010), - [anon_sym_to_json] = ACTIONS(2010), - [anon_sym_to_string] = ACTIONS(2010), - [anon_sym_to_float] = ACTIONS(2010), - [anon_sym_bash] = ACTIONS(2010), - [anon_sym_fish] = ACTIONS(2010), - [anon_sym_raw] = ACTIONS(2010), - [anon_sym_sh] = ACTIONS(2010), - [anon_sym_zsh] = ACTIONS(2010), - [anon_sym_random] = ACTIONS(2010), - [anon_sym_random_boolean] = ACTIONS(2010), - [anon_sym_random_float] = ACTIONS(2010), - [anon_sym_random_integer] = ACTIONS(2010), - [anon_sym_columns] = ACTIONS(2010), - [anon_sym_rows] = ACTIONS(2010), - [anon_sym_reverse] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [sym_integer] = ACTIONS(1412), + [sym_float] = ACTIONS(1410), + [sym_string] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [anon_sym_BANG_EQ] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT_EQ] = ACTIONS(1410), + [anon_sym_LT_EQ] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_elseif] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_EQ_GT] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_transform] = ACTIONS(1412), + [anon_sym_filter] = ACTIONS(1412), + [anon_sym_find] = ACTIONS(1412), + [anon_sym_remove] = ACTIONS(1412), + [anon_sym_reduce] = ACTIONS(1412), + [anon_sym_select] = ACTIONS(1412), + [anon_sym_insert] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_table] = ACTIONS(1412), + [anon_sym_assert] = ACTIONS(1412), + [anon_sym_assert_equal] = ACTIONS(1412), + [anon_sym_download] = ACTIONS(1412), + [anon_sym_help] = ACTIONS(1412), + [anon_sym_length] = ACTIONS(1412), + [anon_sym_output] = ACTIONS(1412), + [anon_sym_output_error] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_append] = ACTIONS(1412), + [anon_sym_metadata] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1412), + [anon_sym_read] = ACTIONS(1412), + [anon_sym_workdir] = ACTIONS(1412), + [anon_sym_write] = ACTIONS(1412), + [anon_sym_from_json] = ACTIONS(1412), + [anon_sym_to_json] = ACTIONS(1412), + [anon_sym_to_string] = ACTIONS(1412), + [anon_sym_to_float] = ACTIONS(1412), + [anon_sym_bash] = ACTIONS(1412), + [anon_sym_fish] = ACTIONS(1412), + [anon_sym_raw] = ACTIONS(1412), + [anon_sym_sh] = ACTIONS(1412), + [anon_sym_zsh] = ACTIONS(1412), + [anon_sym_random] = ACTIONS(1412), + [anon_sym_random_boolean] = ACTIONS(1412), + [anon_sym_random_float] = ACTIONS(1412), + [anon_sym_random_integer] = ACTIONS(1412), + [anon_sym_columns] = ACTIONS(1412), + [anon_sym_rows] = ACTIONS(1412), + [anon_sym_reverse] = ACTIONS(1412), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2014), + [sym_expression] = STATE(855), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(2012), - [sym_integer] = ACTIONS(2014), - [sym_float] = ACTIONS(2012), - [sym_string] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_COLON] = ACTIONS(2012), - [anon_sym_DOT_DOT] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_elseif] = ACTIONS(2012), - [anon_sym_else] = ACTIONS(2014), - [anon_sym_match] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_transform] = ACTIONS(2014), - [anon_sym_filter] = ACTIONS(2014), - [anon_sym_find] = ACTIONS(2014), - [anon_sym_remove] = ACTIONS(2014), - [anon_sym_reduce] = ACTIONS(2014), - [anon_sym_select] = ACTIONS(2014), - [anon_sym_insert] = ACTIONS(2014), - [anon_sym_async] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_table] = ACTIONS(2014), - [anon_sym_assert] = ACTIONS(2014), - [anon_sym_assert_equal] = ACTIONS(2014), - [anon_sym_download] = ACTIONS(2014), - [anon_sym_help] = ACTIONS(2014), - [anon_sym_length] = ACTIONS(2014), - [anon_sym_output] = ACTIONS(2014), - [anon_sym_output_error] = ACTIONS(2014), - [anon_sym_type] = ACTIONS(2014), - [anon_sym_append] = ACTIONS(2014), - [anon_sym_metadata] = ACTIONS(2014), - [anon_sym_move] = ACTIONS(2014), - [anon_sym_read] = ACTIONS(2014), - [anon_sym_workdir] = ACTIONS(2014), - [anon_sym_write] = ACTIONS(2014), - [anon_sym_from_json] = ACTIONS(2014), - [anon_sym_to_json] = ACTIONS(2014), - [anon_sym_to_string] = ACTIONS(2014), - [anon_sym_to_float] = ACTIONS(2014), - [anon_sym_bash] = ACTIONS(2014), - [anon_sym_fish] = ACTIONS(2014), - [anon_sym_raw] = ACTIONS(2014), - [anon_sym_sh] = ACTIONS(2014), - [anon_sym_zsh] = ACTIONS(2014), - [anon_sym_random] = ACTIONS(2014), - [anon_sym_random_boolean] = ACTIONS(2014), - [anon_sym_random_float] = ACTIONS(2014), - [anon_sym_random_integer] = ACTIONS(2014), - [anon_sym_columns] = ACTIONS(2014), - [anon_sym_rows] = ACTIONS(2014), - [anon_sym_reverse] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2018), + [sym_expression] = STATE(857), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [sym_integer] = ACTIONS(2018), - [sym_float] = ACTIONS(2016), - [sym_string] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_DOT_DOT] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_elseif] = ACTIONS(2016), - [anon_sym_else] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_transform] = ACTIONS(2018), - [anon_sym_filter] = ACTIONS(2018), - [anon_sym_find] = ACTIONS(2018), - [anon_sym_remove] = ACTIONS(2018), - [anon_sym_reduce] = ACTIONS(2018), - [anon_sym_select] = ACTIONS(2018), - [anon_sym_insert] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_table] = ACTIONS(2018), - [anon_sym_assert] = ACTIONS(2018), - [anon_sym_assert_equal] = ACTIONS(2018), - [anon_sym_download] = ACTIONS(2018), - [anon_sym_help] = ACTIONS(2018), - [anon_sym_length] = ACTIONS(2018), - [anon_sym_output] = ACTIONS(2018), - [anon_sym_output_error] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_append] = ACTIONS(2018), - [anon_sym_metadata] = ACTIONS(2018), - [anon_sym_move] = ACTIONS(2018), - [anon_sym_read] = ACTIONS(2018), - [anon_sym_workdir] = ACTIONS(2018), - [anon_sym_write] = ACTIONS(2018), - [anon_sym_from_json] = ACTIONS(2018), - [anon_sym_to_json] = ACTIONS(2018), - [anon_sym_to_string] = ACTIONS(2018), - [anon_sym_to_float] = ACTIONS(2018), - [anon_sym_bash] = ACTIONS(2018), - [anon_sym_fish] = ACTIONS(2018), - [anon_sym_raw] = ACTIONS(2018), - [anon_sym_sh] = ACTIONS(2018), - [anon_sym_zsh] = ACTIONS(2018), - [anon_sym_random] = ACTIONS(2018), - [anon_sym_random_boolean] = ACTIONS(2018), - [anon_sym_random_float] = ACTIONS(2018), - [anon_sym_random_integer] = ACTIONS(2018), - [anon_sym_columns] = ACTIONS(2018), - [anon_sym_rows] = ACTIONS(2018), - [anon_sym_reverse] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_if] = ACTIONS(892), + [anon_sym_elseif] = ACTIONS(874), + [anon_sym_else] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [391] = { - [sym_else_if] = STATE(391), - [aux_sym_if_else_repeat1] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [sym_integer] = ACTIONS(1416), + [sym_float] = ACTIONS(1414), + [sym_string] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_EQ_EQ] = ACTIONS(1414), + [anon_sym_BANG_EQ] = ACTIONS(1414), + [anon_sym_AMP_AMP] = ACTIONS(1414), + [anon_sym_PIPE_PIPE] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT_EQ] = ACTIONS(1414), + [anon_sym_LT_EQ] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_elseif] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_EQ_GT] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_transform] = ACTIONS(1416), + [anon_sym_filter] = ACTIONS(1416), + [anon_sym_find] = ACTIONS(1416), + [anon_sym_remove] = ACTIONS(1416), + [anon_sym_reduce] = ACTIONS(1416), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_insert] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_table] = ACTIONS(1416), + [anon_sym_assert] = ACTIONS(1416), + [anon_sym_assert_equal] = ACTIONS(1416), + [anon_sym_download] = ACTIONS(1416), + [anon_sym_help] = ACTIONS(1416), + [anon_sym_length] = ACTIONS(1416), + [anon_sym_output] = ACTIONS(1416), + [anon_sym_output_error] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_append] = ACTIONS(1416), + [anon_sym_metadata] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [anon_sym_read] = ACTIONS(1416), + [anon_sym_workdir] = ACTIONS(1416), + [anon_sym_write] = ACTIONS(1416), + [anon_sym_from_json] = ACTIONS(1416), + [anon_sym_to_json] = ACTIONS(1416), + [anon_sym_to_string] = ACTIONS(1416), + [anon_sym_to_float] = ACTIONS(1416), + [anon_sym_bash] = ACTIONS(1416), + [anon_sym_fish] = ACTIONS(1416), + [anon_sym_raw] = ACTIONS(1416), + [anon_sym_sh] = ACTIONS(1416), + [anon_sym_zsh] = ACTIONS(1416), + [anon_sym_random] = ACTIONS(1416), + [anon_sym_random_boolean] = ACTIONS(1416), + [anon_sym_random_float] = ACTIONS(1416), + [anon_sym_random_integer] = ACTIONS(1416), + [anon_sym_columns] = ACTIONS(1416), + [anon_sym_rows] = ACTIONS(1416), + [anon_sym_reverse] = ACTIONS(1416), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2023), - [sym_string] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_elseif] = ACTIONS(2023), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_EQ_GT] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_transform] = ACTIONS(2025), - [anon_sym_filter] = ACTIONS(2025), - [anon_sym_find] = ACTIONS(2025), - [anon_sym_remove] = ACTIONS(2025), - [anon_sym_reduce] = ACTIONS(2025), - [anon_sym_select] = ACTIONS(2025), - [anon_sym_insert] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_table] = ACTIONS(2025), - [anon_sym_assert] = ACTIONS(2025), - [anon_sym_assert_equal] = ACTIONS(2025), - [anon_sym_download] = ACTIONS(2025), - [anon_sym_help] = ACTIONS(2025), - [anon_sym_length] = ACTIONS(2025), - [anon_sym_output] = ACTIONS(2025), - [anon_sym_output_error] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_append] = ACTIONS(2025), - [anon_sym_metadata] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_read] = ACTIONS(2025), - [anon_sym_workdir] = ACTIONS(2025), - [anon_sym_write] = ACTIONS(2025), - [anon_sym_from_json] = ACTIONS(2025), - [anon_sym_to_json] = ACTIONS(2025), - [anon_sym_to_string] = ACTIONS(2025), - [anon_sym_to_float] = ACTIONS(2025), - [anon_sym_bash] = ACTIONS(2025), - [anon_sym_fish] = ACTIONS(2025), - [anon_sym_raw] = ACTIONS(2025), - [anon_sym_sh] = ACTIONS(2025), - [anon_sym_zsh] = ACTIONS(2025), - [anon_sym_random] = ACTIONS(2025), - [anon_sym_random_boolean] = ACTIONS(2025), - [anon_sym_random_float] = ACTIONS(2025), - [anon_sym_random_integer] = ACTIONS(2025), - [anon_sym_columns] = ACTIONS(2025), - [anon_sym_rows] = ACTIONS(2025), - [anon_sym_reverse] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [sym_integer] = ACTIONS(1420), + [sym_float] = ACTIONS(1418), + [sym_string] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_elseif] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_EQ_GT] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_transform] = ACTIONS(1420), + [anon_sym_filter] = ACTIONS(1420), + [anon_sym_find] = ACTIONS(1420), + [anon_sym_remove] = ACTIONS(1420), + [anon_sym_reduce] = ACTIONS(1420), + [anon_sym_select] = ACTIONS(1420), + [anon_sym_insert] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_table] = ACTIONS(1420), + [anon_sym_assert] = ACTIONS(1420), + [anon_sym_assert_equal] = ACTIONS(1420), + [anon_sym_download] = ACTIONS(1420), + [anon_sym_help] = ACTIONS(1420), + [anon_sym_length] = ACTIONS(1420), + [anon_sym_output] = ACTIONS(1420), + [anon_sym_output_error] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_append] = ACTIONS(1420), + [anon_sym_metadata] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [anon_sym_read] = ACTIONS(1420), + [anon_sym_workdir] = ACTIONS(1420), + [anon_sym_write] = ACTIONS(1420), + [anon_sym_from_json] = ACTIONS(1420), + [anon_sym_to_json] = ACTIONS(1420), + [anon_sym_to_string] = ACTIONS(1420), + [anon_sym_to_float] = ACTIONS(1420), + [anon_sym_bash] = ACTIONS(1420), + [anon_sym_fish] = ACTIONS(1420), + [anon_sym_raw] = ACTIONS(1420), + [anon_sym_sh] = ACTIONS(1420), + [anon_sym_zsh] = ACTIONS(1420), + [anon_sym_random] = ACTIONS(1420), + [anon_sym_random_boolean] = ACTIONS(1420), + [anon_sym_random_float] = ACTIONS(1420), + [anon_sym_random_integer] = ACTIONS(1420), + [anon_sym_columns] = ACTIONS(1420), + [anon_sym_rows] = ACTIONS(1420), + [anon_sym_reverse] = ACTIONS(1420), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), + [sym_expression] = STATE(865), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2027), - [sym_string] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_COLON] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_PERCENT] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_elseif] = ACTIONS(2027), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_EQ_GT] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_transform] = ACTIONS(2029), - [anon_sym_filter] = ACTIONS(2029), - [anon_sym_find] = ACTIONS(2029), - [anon_sym_remove] = ACTIONS(2029), - [anon_sym_reduce] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_insert] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_table] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_assert_equal] = ACTIONS(2029), - [anon_sym_download] = ACTIONS(2029), - [anon_sym_help] = ACTIONS(2029), - [anon_sym_length] = ACTIONS(2029), - [anon_sym_output] = ACTIONS(2029), - [anon_sym_output_error] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_append] = ACTIONS(2029), - [anon_sym_metadata] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_read] = ACTIONS(2029), - [anon_sym_workdir] = ACTIONS(2029), - [anon_sym_write] = ACTIONS(2029), - [anon_sym_from_json] = ACTIONS(2029), - [anon_sym_to_json] = ACTIONS(2029), - [anon_sym_to_string] = ACTIONS(2029), - [anon_sym_to_float] = ACTIONS(2029), - [anon_sym_bash] = ACTIONS(2029), - [anon_sym_fish] = ACTIONS(2029), - [anon_sym_raw] = ACTIONS(2029), - [anon_sym_sh] = ACTIONS(2029), - [anon_sym_zsh] = ACTIONS(2029), - [anon_sym_random] = ACTIONS(2029), - [anon_sym_random_boolean] = ACTIONS(2029), - [anon_sym_random_float] = ACTIONS(2029), - [anon_sym_random_integer] = ACTIONS(2029), - [anon_sym_columns] = ACTIONS(2029), - [anon_sym_rows] = ACTIONS(2029), - [anon_sym_reverse] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [394] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [sym_expression] = STATE(857), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [395] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1425), + [sym_string] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_elseif] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_EQ_GT] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_transform] = ACTIONS(1427), + [anon_sym_filter] = ACTIONS(1427), + [anon_sym_find] = ACTIONS(1427), + [anon_sym_remove] = ACTIONS(1427), + [anon_sym_reduce] = ACTIONS(1427), + [anon_sym_select] = ACTIONS(1427), + [anon_sym_insert] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_table] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_assert_equal] = ACTIONS(1427), + [anon_sym_download] = ACTIONS(1427), + [anon_sym_help] = ACTIONS(1427), + [anon_sym_length] = ACTIONS(1427), + [anon_sym_output] = ACTIONS(1427), + [anon_sym_output_error] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_append] = ACTIONS(1427), + [anon_sym_metadata] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_read] = ACTIONS(1427), + [anon_sym_workdir] = ACTIONS(1427), + [anon_sym_write] = ACTIONS(1427), + [anon_sym_from_json] = ACTIONS(1427), + [anon_sym_to_json] = ACTIONS(1427), + [anon_sym_to_string] = ACTIONS(1427), + [anon_sym_to_float] = ACTIONS(1427), + [anon_sym_bash] = ACTIONS(1427), + [anon_sym_fish] = ACTIONS(1427), + [anon_sym_raw] = ACTIONS(1427), + [anon_sym_sh] = ACTIONS(1427), + [anon_sym_zsh] = ACTIONS(1427), + [anon_sym_random] = ACTIONS(1427), + [anon_sym_random_boolean] = ACTIONS(1427), + [anon_sym_random_float] = ACTIONS(1427), + [anon_sym_random_integer] = ACTIONS(1427), + [anon_sym_columns] = ACTIONS(1427), + [anon_sym_rows] = ACTIONS(1427), + [anon_sym_reverse] = ACTIONS(1427), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), + [ts_builtin_sym_end] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1431), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_COMMA] = ACTIONS(2034), - [sym_integer] = ACTIONS(2036), - [sym_float] = ACTIONS(2034), - [sym_string] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_elseif] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_transform] = ACTIONS(2036), - [anon_sym_filter] = ACTIONS(2036), - [anon_sym_find] = ACTIONS(2036), - [anon_sym_remove] = ACTIONS(2036), - [anon_sym_reduce] = ACTIONS(2036), - [anon_sym_select] = ACTIONS(2036), - [anon_sym_insert] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_table] = ACTIONS(2036), - [anon_sym_assert] = ACTIONS(2036), - [anon_sym_assert_equal] = ACTIONS(2036), - [anon_sym_download] = ACTIONS(2036), - [anon_sym_help] = ACTIONS(2036), - [anon_sym_length] = ACTIONS(2036), - [anon_sym_output] = ACTIONS(2036), - [anon_sym_output_error] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_append] = ACTIONS(2036), - [anon_sym_metadata] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_read] = ACTIONS(2036), - [anon_sym_workdir] = ACTIONS(2036), - [anon_sym_write] = ACTIONS(2036), - [anon_sym_from_json] = ACTIONS(2036), - [anon_sym_to_json] = ACTIONS(2036), - [anon_sym_to_string] = ACTIONS(2036), - [anon_sym_to_float] = ACTIONS(2036), - [anon_sym_bash] = ACTIONS(2036), - [anon_sym_fish] = ACTIONS(2036), - [anon_sym_raw] = ACTIONS(2036), - [anon_sym_sh] = ACTIONS(2036), - [anon_sym_zsh] = ACTIONS(2036), - [anon_sym_random] = ACTIONS(2036), - [anon_sym_random_boolean] = ACTIONS(2036), - [anon_sym_random_float] = ACTIONS(2036), - [anon_sym_random_integer] = ACTIONS(2036), - [anon_sym_columns] = ACTIONS(2036), - [anon_sym_rows] = ACTIONS(2036), - [anon_sym_reverse] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [sym_integer] = ACTIONS(1431), + [sym_float] = ACTIONS(1429), + [sym_string] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_elseif] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_EQ_GT] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_transform] = ACTIONS(1431), + [anon_sym_filter] = ACTIONS(1431), + [anon_sym_find] = ACTIONS(1431), + [anon_sym_remove] = ACTIONS(1431), + [anon_sym_reduce] = ACTIONS(1431), + [anon_sym_select] = ACTIONS(1431), + [anon_sym_insert] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_table] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_assert_equal] = ACTIONS(1431), + [anon_sym_download] = ACTIONS(1431), + [anon_sym_help] = ACTIONS(1431), + [anon_sym_length] = ACTIONS(1431), + [anon_sym_output] = ACTIONS(1431), + [anon_sym_output_error] = ACTIONS(1431), + [anon_sym_type] = ACTIONS(1431), + [anon_sym_append] = ACTIONS(1431), + [anon_sym_metadata] = ACTIONS(1431), + [anon_sym_move] = ACTIONS(1431), + [anon_sym_read] = ACTIONS(1431), + [anon_sym_workdir] = ACTIONS(1431), + [anon_sym_write] = ACTIONS(1431), + [anon_sym_from_json] = ACTIONS(1431), + [anon_sym_to_json] = ACTIONS(1431), + [anon_sym_to_string] = ACTIONS(1431), + [anon_sym_to_float] = ACTIONS(1431), + [anon_sym_bash] = ACTIONS(1431), + [anon_sym_fish] = ACTIONS(1431), + [anon_sym_raw] = ACTIONS(1431), + [anon_sym_sh] = ACTIONS(1431), + [anon_sym_zsh] = ACTIONS(1431), + [anon_sym_random] = ACTIONS(1431), + [anon_sym_random_boolean] = ACTIONS(1431), + [anon_sym_random_float] = ACTIONS(1431), + [anon_sym_random_integer] = ACTIONS(1431), + [anon_sym_columns] = ACTIONS(1431), + [anon_sym_rows] = ACTIONS(1431), + [anon_sym_reverse] = ACTIONS(1431), }, [397] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [sym_integer] = ACTIONS(1435), + [sym_float] = ACTIONS(1433), + [sym_string] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_COLON] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_elseif] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_EQ_GT] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_transform] = ACTIONS(1435), + [anon_sym_filter] = ACTIONS(1435), + [anon_sym_find] = ACTIONS(1435), + [anon_sym_remove] = ACTIONS(1435), + [anon_sym_reduce] = ACTIONS(1435), + [anon_sym_select] = ACTIONS(1435), + [anon_sym_insert] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_table] = ACTIONS(1435), + [anon_sym_assert] = ACTIONS(1435), + [anon_sym_assert_equal] = ACTIONS(1435), + [anon_sym_download] = ACTIONS(1435), + [anon_sym_help] = ACTIONS(1435), + [anon_sym_length] = ACTIONS(1435), + [anon_sym_output] = ACTIONS(1435), + [anon_sym_output_error] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_append] = ACTIONS(1435), + [anon_sym_metadata] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_read] = ACTIONS(1435), + [anon_sym_workdir] = ACTIONS(1435), + [anon_sym_write] = ACTIONS(1435), + [anon_sym_from_json] = ACTIONS(1435), + [anon_sym_to_json] = ACTIONS(1435), + [anon_sym_to_string] = ACTIONS(1435), + [anon_sym_to_float] = ACTIONS(1435), + [anon_sym_bash] = ACTIONS(1435), + [anon_sym_fish] = ACTIONS(1435), + [anon_sym_raw] = ACTIONS(1435), + [anon_sym_sh] = ACTIONS(1435), + [anon_sym_zsh] = ACTIONS(1435), + [anon_sym_random] = ACTIONS(1435), + [anon_sym_random_boolean] = ACTIONS(1435), + [anon_sym_random_float] = ACTIONS(1435), + [anon_sym_random_integer] = ACTIONS(1435), + [anon_sym_columns] = ACTIONS(1435), + [anon_sym_rows] = ACTIONS(1435), + [anon_sym_reverse] = ACTIONS(1435), }, [398] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1437), + [sym_string] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_COLON] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_elseif] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_EQ_GT] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_transform] = ACTIONS(1439), + [anon_sym_filter] = ACTIONS(1439), + [anon_sym_find] = ACTIONS(1439), + [anon_sym_remove] = ACTIONS(1439), + [anon_sym_reduce] = ACTIONS(1439), + [anon_sym_select] = ACTIONS(1439), + [anon_sym_insert] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_table] = ACTIONS(1439), + [anon_sym_assert] = ACTIONS(1439), + [anon_sym_assert_equal] = ACTIONS(1439), + [anon_sym_download] = ACTIONS(1439), + [anon_sym_help] = ACTIONS(1439), + [anon_sym_length] = ACTIONS(1439), + [anon_sym_output] = ACTIONS(1439), + [anon_sym_output_error] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_append] = ACTIONS(1439), + [anon_sym_metadata] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_read] = ACTIONS(1439), + [anon_sym_workdir] = ACTIONS(1439), + [anon_sym_write] = ACTIONS(1439), + [anon_sym_from_json] = ACTIONS(1439), + [anon_sym_to_json] = ACTIONS(1439), + [anon_sym_to_string] = ACTIONS(1439), + [anon_sym_to_float] = ACTIONS(1439), + [anon_sym_bash] = ACTIONS(1439), + [anon_sym_fish] = ACTIONS(1439), + [anon_sym_raw] = ACTIONS(1439), + [anon_sym_sh] = ACTIONS(1439), + [anon_sym_zsh] = ACTIONS(1439), + [anon_sym_random] = ACTIONS(1439), + [anon_sym_random_boolean] = ACTIONS(1439), + [anon_sym_random_float] = ACTIONS(1439), + [anon_sym_random_integer] = ACTIONS(1439), + [anon_sym_columns] = ACTIONS(1439), + [anon_sym_rows] = ACTIONS(1439), + [anon_sym_reverse] = ACTIONS(1439), }, [399] = { - [sym_else_if] = STATE(401), - [sym_else] = STATE(495), - [aux_sym_if_else_repeat1] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1899), - [sym_string] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_transform] = ACTIONS(1901), - [anon_sym_filter] = ACTIONS(1901), - [anon_sym_find] = ACTIONS(1901), - [anon_sym_remove] = ACTIONS(1901), - [anon_sym_reduce] = ACTIONS(1901), - [anon_sym_select] = ACTIONS(1901), - [anon_sym_insert] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_table] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_assert_equal] = ACTIONS(1901), - [anon_sym_download] = ACTIONS(1901), - [anon_sym_help] = ACTIONS(1901), - [anon_sym_length] = ACTIONS(1901), - [anon_sym_output] = ACTIONS(1901), - [anon_sym_output_error] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_append] = ACTIONS(1901), - [anon_sym_metadata] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [anon_sym_read] = ACTIONS(1901), - [anon_sym_workdir] = ACTIONS(1901), - [anon_sym_write] = ACTIONS(1901), - [anon_sym_from_json] = ACTIONS(1901), - [anon_sym_to_json] = ACTIONS(1901), - [anon_sym_to_string] = ACTIONS(1901), - [anon_sym_to_float] = ACTIONS(1901), - [anon_sym_bash] = ACTIONS(1901), - [anon_sym_fish] = ACTIONS(1901), - [anon_sym_raw] = ACTIONS(1901), - [anon_sym_sh] = ACTIONS(1901), - [anon_sym_zsh] = ACTIONS(1901), - [anon_sym_random] = ACTIONS(1901), - [anon_sym_random_boolean] = ACTIONS(1901), - [anon_sym_random_float] = ACTIONS(1901), - [anon_sym_random_integer] = ACTIONS(1901), - [anon_sym_columns] = ACTIONS(1901), - [anon_sym_rows] = ACTIONS(1901), - [anon_sym_reverse] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [sym_integer] = ACTIONS(1443), + [sym_float] = ACTIONS(1441), + [sym_string] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACK] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_COLON] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_elseif] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_EQ_GT] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_transform] = ACTIONS(1443), + [anon_sym_filter] = ACTIONS(1443), + [anon_sym_find] = ACTIONS(1443), + [anon_sym_remove] = ACTIONS(1443), + [anon_sym_reduce] = ACTIONS(1443), + [anon_sym_select] = ACTIONS(1443), + [anon_sym_insert] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_table] = ACTIONS(1443), + [anon_sym_assert] = ACTIONS(1443), + [anon_sym_assert_equal] = ACTIONS(1443), + [anon_sym_download] = ACTIONS(1443), + [anon_sym_help] = ACTIONS(1443), + [anon_sym_length] = ACTIONS(1443), + [anon_sym_output] = ACTIONS(1443), + [anon_sym_output_error] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_append] = ACTIONS(1443), + [anon_sym_metadata] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_read] = ACTIONS(1443), + [anon_sym_workdir] = ACTIONS(1443), + [anon_sym_write] = ACTIONS(1443), + [anon_sym_from_json] = ACTIONS(1443), + [anon_sym_to_json] = ACTIONS(1443), + [anon_sym_to_string] = ACTIONS(1443), + [anon_sym_to_float] = ACTIONS(1443), + [anon_sym_bash] = ACTIONS(1443), + [anon_sym_fish] = ACTIONS(1443), + [anon_sym_raw] = ACTIONS(1443), + [anon_sym_sh] = ACTIONS(1443), + [anon_sym_zsh] = ACTIONS(1443), + [anon_sym_random] = ACTIONS(1443), + [anon_sym_random_boolean] = ACTIONS(1443), + [anon_sym_random_float] = ACTIONS(1443), + [anon_sym_random_integer] = ACTIONS(1443), + [anon_sym_columns] = ACTIONS(1443), + [anon_sym_rows] = ACTIONS(1443), + [anon_sym_reverse] = ACTIONS(1443), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), + [sym_expression] = STATE(838), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(400), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_COMMA] = ACTIONS(2040), - [sym_integer] = ACTIONS(2042), - [sym_float] = ACTIONS(2040), - [sym_string] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_elseif] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_transform] = ACTIONS(2042), - [anon_sym_filter] = ACTIONS(2042), - [anon_sym_find] = ACTIONS(2042), - [anon_sym_remove] = ACTIONS(2042), - [anon_sym_reduce] = ACTIONS(2042), - [anon_sym_select] = ACTIONS(2042), - [anon_sym_insert] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_table] = ACTIONS(2042), - [anon_sym_assert] = ACTIONS(2042), - [anon_sym_assert_equal] = ACTIONS(2042), - [anon_sym_download] = ACTIONS(2042), - [anon_sym_help] = ACTIONS(2042), - [anon_sym_length] = ACTIONS(2042), - [anon_sym_output] = ACTIONS(2042), - [anon_sym_output_error] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_append] = ACTIONS(2042), - [anon_sym_metadata] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_read] = ACTIONS(2042), - [anon_sym_workdir] = ACTIONS(2042), - [anon_sym_write] = ACTIONS(2042), - [anon_sym_from_json] = ACTIONS(2042), - [anon_sym_to_json] = ACTIONS(2042), - [anon_sym_to_string] = ACTIONS(2042), - [anon_sym_to_float] = ACTIONS(2042), - [anon_sym_bash] = ACTIONS(2042), - [anon_sym_fish] = ACTIONS(2042), - [anon_sym_raw] = ACTIONS(2042), - [anon_sym_sh] = ACTIONS(2042), - [anon_sym_zsh] = ACTIONS(2042), - [anon_sym_random] = ACTIONS(2042), - [anon_sym_random_boolean] = ACTIONS(2042), - [anon_sym_random_float] = ACTIONS(2042), - [anon_sym_random_integer] = ACTIONS(2042), - [anon_sym_columns] = ACTIONS(2042), - [anon_sym_rows] = ACTIONS(2042), - [anon_sym_reverse] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_if] = ACTIONS(860), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_else] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [401] = { - [sym_else_if] = STATE(442), - [sym_else] = STATE(469), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [sym_math_operator] = STATE(722), + [sym_logic_operator] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_elseif] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1345), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1345), - [sym_float] = ACTIONS(1322), - [sym_string] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_elseif] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_table] = ACTIONS(1345), - [anon_sym_assert] = ACTIONS(1345), - [anon_sym_assert_equal] = ACTIONS(1345), - [anon_sym_download] = ACTIONS(1345), - [anon_sym_help] = ACTIONS(1345), - [anon_sym_length] = ACTIONS(1345), - [anon_sym_output] = ACTIONS(1345), - [anon_sym_output_error] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_append] = ACTIONS(1345), - [anon_sym_metadata] = ACTIONS(1345), - [anon_sym_move] = ACTIONS(1345), - [anon_sym_read] = ACTIONS(1345), - [anon_sym_workdir] = ACTIONS(1345), - [anon_sym_write] = ACTIONS(1345), - [anon_sym_from_json] = ACTIONS(1345), - [anon_sym_to_json] = ACTIONS(1345), - [anon_sym_to_string] = ACTIONS(1345), - [anon_sym_to_float] = ACTIONS(1345), - [anon_sym_bash] = ACTIONS(1345), - [anon_sym_fish] = ACTIONS(1345), - [anon_sym_raw] = ACTIONS(1345), - [anon_sym_sh] = ACTIONS(1345), - [anon_sym_zsh] = ACTIONS(1345), - [anon_sym_random] = ACTIONS(1345), - [anon_sym_random_boolean] = ACTIONS(1345), - [anon_sym_random_float] = ACTIONS(1345), - [anon_sym_random_integer] = ACTIONS(1345), - [anon_sym_columns] = ACTIONS(1345), - [anon_sym_rows] = ACTIONS(1345), - [anon_sym_reverse] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [sym_integer] = ACTIONS(1449), + [sym_float] = ACTIONS(1447), + [sym_string] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_elseif] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_transform] = ACTIONS(1449), + [anon_sym_filter] = ACTIONS(1449), + [anon_sym_find] = ACTIONS(1449), + [anon_sym_remove] = ACTIONS(1449), + [anon_sym_reduce] = ACTIONS(1449), + [anon_sym_select] = ACTIONS(1449), + [anon_sym_insert] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_table] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_assert_equal] = ACTIONS(1449), + [anon_sym_download] = ACTIONS(1449), + [anon_sym_help] = ACTIONS(1449), + [anon_sym_length] = ACTIONS(1449), + [anon_sym_output] = ACTIONS(1449), + [anon_sym_output_error] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_append] = ACTIONS(1449), + [anon_sym_metadata] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [anon_sym_read] = ACTIONS(1449), + [anon_sym_workdir] = ACTIONS(1449), + [anon_sym_write] = ACTIONS(1449), + [anon_sym_from_json] = ACTIONS(1449), + [anon_sym_to_json] = ACTIONS(1449), + [anon_sym_to_string] = ACTIONS(1449), + [anon_sym_to_float] = ACTIONS(1449), + [anon_sym_bash] = ACTIONS(1449), + [anon_sym_fish] = ACTIONS(1449), + [anon_sym_raw] = ACTIONS(1449), + [anon_sym_sh] = ACTIONS(1449), + [anon_sym_zsh] = ACTIONS(1449), + [anon_sym_random] = ACTIONS(1449), + [anon_sym_random_boolean] = ACTIONS(1449), + [anon_sym_random_float] = ACTIONS(1449), + [anon_sym_random_integer] = ACTIONS(1449), + [anon_sym_columns] = ACTIONS(1449), + [anon_sym_rows] = ACTIONS(1449), + [anon_sym_reverse] = ACTIONS(1449), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2046), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_COMMA] = ACTIONS(2044), - [sym_integer] = ACTIONS(2046), - [sym_float] = ACTIONS(2044), - [sym_string] = ACTIONS(2044), - [anon_sym_true] = ACTIONS(2046), - [anon_sym_false] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_COLON] = ACTIONS(2044), - [anon_sym_DOT_DOT] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_PERCENT] = ACTIONS(2044), - [anon_sym_EQ_EQ] = ACTIONS(2044), - [anon_sym_BANG_EQ] = ACTIONS(2044), - [anon_sym_AMP_AMP] = ACTIONS(2044), - [anon_sym_PIPE_PIPE] = ACTIONS(2044), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2044), - [anon_sym_LT_EQ] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_elseif] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2046), - [anon_sym_match] = ACTIONS(2046), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_transform] = ACTIONS(2046), - [anon_sym_filter] = ACTIONS(2046), - [anon_sym_find] = ACTIONS(2046), - [anon_sym_remove] = ACTIONS(2046), - [anon_sym_reduce] = ACTIONS(2046), - [anon_sym_select] = ACTIONS(2046), - [anon_sym_insert] = ACTIONS(2046), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_table] = ACTIONS(2046), - [anon_sym_assert] = ACTIONS(2046), - [anon_sym_assert_equal] = ACTIONS(2046), - [anon_sym_download] = ACTIONS(2046), - [anon_sym_help] = ACTIONS(2046), - [anon_sym_length] = ACTIONS(2046), - [anon_sym_output] = ACTIONS(2046), - [anon_sym_output_error] = ACTIONS(2046), - [anon_sym_type] = ACTIONS(2046), - [anon_sym_append] = ACTIONS(2046), - [anon_sym_metadata] = ACTIONS(2046), - [anon_sym_move] = ACTIONS(2046), - [anon_sym_read] = ACTIONS(2046), - [anon_sym_workdir] = ACTIONS(2046), - [anon_sym_write] = ACTIONS(2046), - [anon_sym_from_json] = ACTIONS(2046), - [anon_sym_to_json] = ACTIONS(2046), - [anon_sym_to_string] = ACTIONS(2046), - [anon_sym_to_float] = ACTIONS(2046), - [anon_sym_bash] = ACTIONS(2046), - [anon_sym_fish] = ACTIONS(2046), - [anon_sym_raw] = ACTIONS(2046), - [anon_sym_sh] = ACTIONS(2046), - [anon_sym_zsh] = ACTIONS(2046), - [anon_sym_random] = ACTIONS(2046), - [anon_sym_random_boolean] = ACTIONS(2046), - [anon_sym_random_float] = ACTIONS(2046), - [anon_sym_random_integer] = ACTIONS(2046), - [anon_sym_columns] = ACTIONS(2046), - [anon_sym_rows] = ACTIONS(2046), - [anon_sym_reverse] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_COMMA] = ACTIONS(2048), - [sym_integer] = ACTIONS(2050), - [sym_float] = ACTIONS(2048), - [sym_string] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_elseif] = ACTIONS(2048), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_transform] = ACTIONS(2050), - [anon_sym_filter] = ACTIONS(2050), - [anon_sym_find] = ACTIONS(2050), - [anon_sym_remove] = ACTIONS(2050), - [anon_sym_reduce] = ACTIONS(2050), - [anon_sym_select] = ACTIONS(2050), - [anon_sym_insert] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_table] = ACTIONS(2050), - [anon_sym_assert] = ACTIONS(2050), - [anon_sym_assert_equal] = ACTIONS(2050), - [anon_sym_download] = ACTIONS(2050), - [anon_sym_help] = ACTIONS(2050), - [anon_sym_length] = ACTIONS(2050), - [anon_sym_output] = ACTIONS(2050), - [anon_sym_output_error] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_append] = ACTIONS(2050), - [anon_sym_metadata] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_read] = ACTIONS(2050), - [anon_sym_workdir] = ACTIONS(2050), - [anon_sym_write] = ACTIONS(2050), - [anon_sym_from_json] = ACTIONS(2050), - [anon_sym_to_json] = ACTIONS(2050), - [anon_sym_to_string] = ACTIONS(2050), - [anon_sym_to_float] = ACTIONS(2050), - [anon_sym_bash] = ACTIONS(2050), - [anon_sym_fish] = ACTIONS(2050), - [anon_sym_raw] = ACTIONS(2050), - [anon_sym_sh] = ACTIONS(2050), - [anon_sym_zsh] = ACTIONS(2050), - [anon_sym_random] = ACTIONS(2050), - [anon_sym_random_boolean] = ACTIONS(2050), - [anon_sym_random_float] = ACTIONS(2050), - [anon_sym_random_integer] = ACTIONS(2050), - [anon_sym_columns] = ACTIONS(2050), - [anon_sym_rows] = ACTIONS(2050), - [anon_sym_reverse] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [sym_integer] = ACTIONS(1453), + [sym_float] = ACTIONS(1451), + [sym_string] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_elseif] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_transform] = ACTIONS(1453), + [anon_sym_filter] = ACTIONS(1453), + [anon_sym_find] = ACTIONS(1453), + [anon_sym_remove] = ACTIONS(1453), + [anon_sym_reduce] = ACTIONS(1453), + [anon_sym_select] = ACTIONS(1453), + [anon_sym_insert] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_table] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_assert_equal] = ACTIONS(1453), + [anon_sym_download] = ACTIONS(1453), + [anon_sym_help] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_output] = ACTIONS(1453), + [anon_sym_output_error] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_append] = ACTIONS(1453), + [anon_sym_metadata] = ACTIONS(1453), + [anon_sym_move] = ACTIONS(1453), + [anon_sym_read] = ACTIONS(1453), + [anon_sym_workdir] = ACTIONS(1453), + [anon_sym_write] = ACTIONS(1453), + [anon_sym_from_json] = ACTIONS(1453), + [anon_sym_to_json] = ACTIONS(1453), + [anon_sym_to_string] = ACTIONS(1453), + [anon_sym_to_float] = ACTIONS(1453), + [anon_sym_bash] = ACTIONS(1453), + [anon_sym_fish] = ACTIONS(1453), + [anon_sym_raw] = ACTIONS(1453), + [anon_sym_sh] = ACTIONS(1453), + [anon_sym_zsh] = ACTIONS(1453), + [anon_sym_random] = ACTIONS(1453), + [anon_sym_random_boolean] = ACTIONS(1453), + [anon_sym_random_float] = ACTIONS(1453), + [anon_sym_random_integer] = ACTIONS(1453), + [anon_sym_columns] = ACTIONS(1453), + [anon_sym_rows] = ACTIONS(1453), + [anon_sym_reverse] = ACTIONS(1453), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), + [sym_expression] = STATE(856), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_math_operator] = STATE(679), + [sym_logic] = STATE(795), + [sym_logic_operator] = STATE(695), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [sym_integer] = ACTIONS(2054), - [sym_float] = ACTIONS(2052), - [sym_string] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_RBRACK] = ACTIONS(2052), - [anon_sym_COLON] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_elseif] = ACTIONS(2052), - [anon_sym_else] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_transform] = ACTIONS(2054), - [anon_sym_filter] = ACTIONS(2054), - [anon_sym_find] = ACTIONS(2054), - [anon_sym_remove] = ACTIONS(2054), - [anon_sym_reduce] = ACTIONS(2054), - [anon_sym_select] = ACTIONS(2054), - [anon_sym_insert] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_table] = ACTIONS(2054), - [anon_sym_assert] = ACTIONS(2054), - [anon_sym_assert_equal] = ACTIONS(2054), - [anon_sym_download] = ACTIONS(2054), - [anon_sym_help] = ACTIONS(2054), - [anon_sym_length] = ACTIONS(2054), - [anon_sym_output] = ACTIONS(2054), - [anon_sym_output_error] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_append] = ACTIONS(2054), - [anon_sym_metadata] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_read] = ACTIONS(2054), - [anon_sym_workdir] = ACTIONS(2054), - [anon_sym_write] = ACTIONS(2054), - [anon_sym_from_json] = ACTIONS(2054), - [anon_sym_to_json] = ACTIONS(2054), - [anon_sym_to_string] = ACTIONS(2054), - [anon_sym_to_float] = ACTIONS(2054), - [anon_sym_bash] = ACTIONS(2054), - [anon_sym_fish] = ACTIONS(2054), - [anon_sym_raw] = ACTIONS(2054), - [anon_sym_sh] = ACTIONS(2054), - [anon_sym_zsh] = ACTIONS(2054), - [anon_sym_random] = ACTIONS(2054), - [anon_sym_random_boolean] = ACTIONS(2054), - [anon_sym_random_float] = ACTIONS(2054), - [anon_sym_random_integer] = ACTIONS(2054), - [anon_sym_columns] = ACTIONS(2054), - [anon_sym_rows] = ACTIONS(2054), - [anon_sym_reverse] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_COMMA] = ACTIONS(2056), - [sym_integer] = ACTIONS(2058), - [sym_float] = ACTIONS(2056), - [sym_string] = ACTIONS(2056), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_RBRACK] = ACTIONS(2056), - [anon_sym_COLON] = ACTIONS(2056), - [anon_sym_DOT_DOT] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT_EQ] = ACTIONS(2056), - [anon_sym_LT_EQ] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_elseif] = ACTIONS(2056), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_match] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_transform] = ACTIONS(2058), - [anon_sym_filter] = ACTIONS(2058), - [anon_sym_find] = ACTIONS(2058), - [anon_sym_remove] = ACTIONS(2058), - [anon_sym_reduce] = ACTIONS(2058), - [anon_sym_select] = ACTIONS(2058), - [anon_sym_insert] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_table] = ACTIONS(2058), - [anon_sym_assert] = ACTIONS(2058), - [anon_sym_assert_equal] = ACTIONS(2058), - [anon_sym_download] = ACTIONS(2058), - [anon_sym_help] = ACTIONS(2058), - [anon_sym_length] = ACTIONS(2058), - [anon_sym_output] = ACTIONS(2058), - [anon_sym_output_error] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_append] = ACTIONS(2058), - [anon_sym_metadata] = ACTIONS(2058), - [anon_sym_move] = ACTIONS(2058), - [anon_sym_read] = ACTIONS(2058), - [anon_sym_workdir] = ACTIONS(2058), - [anon_sym_write] = ACTIONS(2058), - [anon_sym_from_json] = ACTIONS(2058), - [anon_sym_to_json] = ACTIONS(2058), - [anon_sym_to_string] = ACTIONS(2058), - [anon_sym_to_float] = ACTIONS(2058), - [anon_sym_bash] = ACTIONS(2058), - [anon_sym_fish] = ACTIONS(2058), - [anon_sym_raw] = ACTIONS(2058), - [anon_sym_sh] = ACTIONS(2058), - [anon_sym_zsh] = ACTIONS(2058), - [anon_sym_random] = ACTIONS(2058), - [anon_sym_random_boolean] = ACTIONS(2058), - [anon_sym_random_float] = ACTIONS(2058), - [anon_sym_random_integer] = ACTIONS(2058), - [anon_sym_columns] = ACTIONS(2058), - [anon_sym_rows] = ACTIONS(2058), - [anon_sym_reverse] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1455), + [sym_string] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_elseif] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_transform] = ACTIONS(1457), + [anon_sym_filter] = ACTIONS(1457), + [anon_sym_find] = ACTIONS(1457), + [anon_sym_remove] = ACTIONS(1457), + [anon_sym_reduce] = ACTIONS(1457), + [anon_sym_select] = ACTIONS(1457), + [anon_sym_insert] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_table] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_assert_equal] = ACTIONS(1457), + [anon_sym_download] = ACTIONS(1457), + [anon_sym_help] = ACTIONS(1457), + [anon_sym_length] = ACTIONS(1457), + [anon_sym_output] = ACTIONS(1457), + [anon_sym_output_error] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_append] = ACTIONS(1457), + [anon_sym_metadata] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [anon_sym_read] = ACTIONS(1457), + [anon_sym_workdir] = ACTIONS(1457), + [anon_sym_write] = ACTIONS(1457), + [anon_sym_from_json] = ACTIONS(1457), + [anon_sym_to_json] = ACTIONS(1457), + [anon_sym_to_string] = ACTIONS(1457), + [anon_sym_to_float] = ACTIONS(1457), + [anon_sym_bash] = ACTIONS(1457), + [anon_sym_fish] = ACTIONS(1457), + [anon_sym_raw] = ACTIONS(1457), + [anon_sym_sh] = ACTIONS(1457), + [anon_sym_zsh] = ACTIONS(1457), + [anon_sym_random] = ACTIONS(1457), + [anon_sym_random_boolean] = ACTIONS(1457), + [anon_sym_random_float] = ACTIONS(1457), + [anon_sym_random_integer] = ACTIONS(1457), + [anon_sym_columns] = ACTIONS(1457), + [anon_sym_rows] = ACTIONS(1457), + [anon_sym_reverse] = ACTIONS(1457), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [sym_integer] = ACTIONS(2062), - [sym_float] = ACTIONS(2060), - [sym_string] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_elseif] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_transform] = ACTIONS(2062), - [anon_sym_filter] = ACTIONS(2062), - [anon_sym_find] = ACTIONS(2062), - [anon_sym_remove] = ACTIONS(2062), - [anon_sym_reduce] = ACTIONS(2062), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_insert] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_table] = ACTIONS(2062), - [anon_sym_assert] = ACTIONS(2062), - [anon_sym_assert_equal] = ACTIONS(2062), - [anon_sym_download] = ACTIONS(2062), - [anon_sym_help] = ACTIONS(2062), - [anon_sym_length] = ACTIONS(2062), - [anon_sym_output] = ACTIONS(2062), - [anon_sym_output_error] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_append] = ACTIONS(2062), - [anon_sym_metadata] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_read] = ACTIONS(2062), - [anon_sym_workdir] = ACTIONS(2062), - [anon_sym_write] = ACTIONS(2062), - [anon_sym_from_json] = ACTIONS(2062), - [anon_sym_to_json] = ACTIONS(2062), - [anon_sym_to_string] = ACTIONS(2062), - [anon_sym_to_float] = ACTIONS(2062), - [anon_sym_bash] = ACTIONS(2062), - [anon_sym_fish] = ACTIONS(2062), - [anon_sym_raw] = ACTIONS(2062), - [anon_sym_sh] = ACTIONS(2062), - [anon_sym_zsh] = ACTIONS(2062), - [anon_sym_random] = ACTIONS(2062), - [anon_sym_random_boolean] = ACTIONS(2062), - [anon_sym_random_float] = ACTIONS(2062), - [anon_sym_random_integer] = ACTIONS(2062), - [anon_sym_columns] = ACTIONS(2062), - [anon_sym_rows] = ACTIONS(2062), - [anon_sym_reverse] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [sym_integer] = ACTIONS(2066), - [sym_float] = ACTIONS(2064), - [sym_string] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_elseif] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_transform] = ACTIONS(2066), - [anon_sym_filter] = ACTIONS(2066), - [anon_sym_find] = ACTIONS(2066), - [anon_sym_remove] = ACTIONS(2066), - [anon_sym_reduce] = ACTIONS(2066), - [anon_sym_select] = ACTIONS(2066), - [anon_sym_insert] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_table] = ACTIONS(2066), - [anon_sym_assert] = ACTIONS(2066), - [anon_sym_assert_equal] = ACTIONS(2066), - [anon_sym_download] = ACTIONS(2066), - [anon_sym_help] = ACTIONS(2066), - [anon_sym_length] = ACTIONS(2066), - [anon_sym_output] = ACTIONS(2066), - [anon_sym_output_error] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_append] = ACTIONS(2066), - [anon_sym_metadata] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_read] = ACTIONS(2066), - [anon_sym_workdir] = ACTIONS(2066), - [anon_sym_write] = ACTIONS(2066), - [anon_sym_from_json] = ACTIONS(2066), - [anon_sym_to_json] = ACTIONS(2066), - [anon_sym_to_string] = ACTIONS(2066), - [anon_sym_to_float] = ACTIONS(2066), - [anon_sym_bash] = ACTIONS(2066), - [anon_sym_fish] = ACTIONS(2066), - [anon_sym_raw] = ACTIONS(2066), - [anon_sym_sh] = ACTIONS(2066), - [anon_sym_zsh] = ACTIONS(2066), - [anon_sym_random] = ACTIONS(2066), - [anon_sym_random_boolean] = ACTIONS(2066), - [anon_sym_random_float] = ACTIONS(2066), - [anon_sym_random_integer] = ACTIONS(2066), - [anon_sym_columns] = ACTIONS(2066), - [anon_sym_rows] = ACTIONS(2066), - [anon_sym_reverse] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(203), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [sym_integer] = ACTIONS(2070), - [sym_float] = ACTIONS(2068), - [sym_string] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_elseif] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_transform] = ACTIONS(2070), - [anon_sym_filter] = ACTIONS(2070), - [anon_sym_find] = ACTIONS(2070), - [anon_sym_remove] = ACTIONS(2070), - [anon_sym_reduce] = ACTIONS(2070), - [anon_sym_select] = ACTIONS(2070), - [anon_sym_insert] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_table] = ACTIONS(2070), - [anon_sym_assert] = ACTIONS(2070), - [anon_sym_assert_equal] = ACTIONS(2070), - [anon_sym_download] = ACTIONS(2070), - [anon_sym_help] = ACTIONS(2070), - [anon_sym_length] = ACTIONS(2070), - [anon_sym_output] = ACTIONS(2070), - [anon_sym_output_error] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_append] = ACTIONS(2070), - [anon_sym_metadata] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_read] = ACTIONS(2070), - [anon_sym_workdir] = ACTIONS(2070), - [anon_sym_write] = ACTIONS(2070), - [anon_sym_from_json] = ACTIONS(2070), - [anon_sym_to_json] = ACTIONS(2070), - [anon_sym_to_string] = ACTIONS(2070), - [anon_sym_to_float] = ACTIONS(2070), - [anon_sym_bash] = ACTIONS(2070), - [anon_sym_fish] = ACTIONS(2070), - [anon_sym_raw] = ACTIONS(2070), - [anon_sym_sh] = ACTIONS(2070), - [anon_sym_zsh] = ACTIONS(2070), - [anon_sym_random] = ACTIONS(2070), - [anon_sym_random_boolean] = ACTIONS(2070), - [anon_sym_random_float] = ACTIONS(2070), - [anon_sym_random_integer] = ACTIONS(2070), - [anon_sym_columns] = ACTIONS(2070), - [anon_sym_rows] = ACTIONS(2070), - [anon_sym_reverse] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [sym_integer] = ACTIONS(2074), - [sym_float] = ACTIONS(2072), - [sym_string] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_elseif] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_transform] = ACTIONS(2074), - [anon_sym_filter] = ACTIONS(2074), - [anon_sym_find] = ACTIONS(2074), - [anon_sym_remove] = ACTIONS(2074), - [anon_sym_reduce] = ACTIONS(2074), - [anon_sym_select] = ACTIONS(2074), - [anon_sym_insert] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_table] = ACTIONS(2074), - [anon_sym_assert] = ACTIONS(2074), - [anon_sym_assert_equal] = ACTIONS(2074), - [anon_sym_download] = ACTIONS(2074), - [anon_sym_help] = ACTIONS(2074), - [anon_sym_length] = ACTIONS(2074), - [anon_sym_output] = ACTIONS(2074), - [anon_sym_output_error] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_append] = ACTIONS(2074), - [anon_sym_metadata] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_read] = ACTIONS(2074), - [anon_sym_workdir] = ACTIONS(2074), - [anon_sym_write] = ACTIONS(2074), - [anon_sym_from_json] = ACTIONS(2074), - [anon_sym_to_json] = ACTIONS(2074), - [anon_sym_to_string] = ACTIONS(2074), - [anon_sym_to_float] = ACTIONS(2074), - [anon_sym_bash] = ACTIONS(2074), - [anon_sym_fish] = ACTIONS(2074), - [anon_sym_raw] = ACTIONS(2074), - [anon_sym_sh] = ACTIONS(2074), - [anon_sym_zsh] = ACTIONS(2074), - [anon_sym_random] = ACTIONS(2074), - [anon_sym_random_boolean] = ACTIONS(2074), - [anon_sym_random_float] = ACTIONS(2074), - [anon_sym_random_integer] = ACTIONS(2074), - [anon_sym_columns] = ACTIONS(2074), - [anon_sym_rows] = ACTIONS(2074), - [anon_sym_reverse] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), + [sym_math_operator] = STATE(744), + [sym_logic_operator] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [sym_integer] = ACTIONS(2078), - [sym_float] = ACTIONS(2076), - [sym_string] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_RBRACK] = ACTIONS(2076), - [anon_sym_COLON] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_elseif] = ACTIONS(2076), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_transform] = ACTIONS(2078), - [anon_sym_filter] = ACTIONS(2078), - [anon_sym_find] = ACTIONS(2078), - [anon_sym_remove] = ACTIONS(2078), - [anon_sym_reduce] = ACTIONS(2078), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_insert] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_table] = ACTIONS(2078), - [anon_sym_assert] = ACTIONS(2078), - [anon_sym_assert_equal] = ACTIONS(2078), - [anon_sym_download] = ACTIONS(2078), - [anon_sym_help] = ACTIONS(2078), - [anon_sym_length] = ACTIONS(2078), - [anon_sym_output] = ACTIONS(2078), - [anon_sym_output_error] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_append] = ACTIONS(2078), - [anon_sym_metadata] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_read] = ACTIONS(2078), - [anon_sym_workdir] = ACTIONS(2078), - [anon_sym_write] = ACTIONS(2078), - [anon_sym_from_json] = ACTIONS(2078), - [anon_sym_to_json] = ACTIONS(2078), - [anon_sym_to_string] = ACTIONS(2078), - [anon_sym_to_float] = ACTIONS(2078), - [anon_sym_bash] = ACTIONS(2078), - [anon_sym_fish] = ACTIONS(2078), - [anon_sym_raw] = ACTIONS(2078), - [anon_sym_sh] = ACTIONS(2078), - [anon_sym_zsh] = ACTIONS(2078), - [anon_sym_random] = ACTIONS(2078), - [anon_sym_random_boolean] = ACTIONS(2078), - [anon_sym_random_float] = ACTIONS(2078), - [anon_sym_random_integer] = ACTIONS(2078), - [anon_sym_columns] = ACTIONS(2078), - [anon_sym_rows] = ACTIONS(2078), - [anon_sym_reverse] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1465), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), }, [412] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [413] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1399), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_RBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), }, [414] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1973), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_elseif] = ACTIONS(1938), - [anon_sym_else] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_elseif] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_COMMA] = ACTIONS(2080), - [sym_integer] = ACTIONS(2082), - [sym_float] = ACTIONS(2080), - [sym_string] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_RBRACK] = ACTIONS(2080), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_elseif] = ACTIONS(2080), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_transform] = ACTIONS(2082), - [anon_sym_filter] = ACTIONS(2082), - [anon_sym_find] = ACTIONS(2082), - [anon_sym_remove] = ACTIONS(2082), - [anon_sym_reduce] = ACTIONS(2082), - [anon_sym_select] = ACTIONS(2082), - [anon_sym_insert] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_table] = ACTIONS(2082), - [anon_sym_assert] = ACTIONS(2082), - [anon_sym_assert_equal] = ACTIONS(2082), - [anon_sym_download] = ACTIONS(2082), - [anon_sym_help] = ACTIONS(2082), - [anon_sym_length] = ACTIONS(2082), - [anon_sym_output] = ACTIONS(2082), - [anon_sym_output_error] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_append] = ACTIONS(2082), - [anon_sym_metadata] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_read] = ACTIONS(2082), - [anon_sym_workdir] = ACTIONS(2082), - [anon_sym_write] = ACTIONS(2082), - [anon_sym_from_json] = ACTIONS(2082), - [anon_sym_to_json] = ACTIONS(2082), - [anon_sym_to_string] = ACTIONS(2082), - [anon_sym_to_float] = ACTIONS(2082), - [anon_sym_bash] = ACTIONS(2082), - [anon_sym_fish] = ACTIONS(2082), - [anon_sym_raw] = ACTIONS(2082), - [anon_sym_sh] = ACTIONS(2082), - [anon_sym_zsh] = ACTIONS(2082), - [anon_sym_random] = ACTIONS(2082), - [anon_sym_random_boolean] = ACTIONS(2082), - [anon_sym_random_float] = ACTIONS(2082), - [anon_sym_random_integer] = ACTIONS(2082), - [anon_sym_columns] = ACTIONS(2082), - [anon_sym_rows] = ACTIONS(2082), - [anon_sym_reverse] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(2084), - [sym_integer] = ACTIONS(2086), - [sym_float] = ACTIONS(2084), - [sym_string] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_elseif] = ACTIONS(2084), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_transform] = ACTIONS(2086), - [anon_sym_filter] = ACTIONS(2086), - [anon_sym_find] = ACTIONS(2086), - [anon_sym_remove] = ACTIONS(2086), - [anon_sym_reduce] = ACTIONS(2086), - [anon_sym_select] = ACTIONS(2086), - [anon_sym_insert] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_table] = ACTIONS(2086), - [anon_sym_assert] = ACTIONS(2086), - [anon_sym_assert_equal] = ACTIONS(2086), - [anon_sym_download] = ACTIONS(2086), - [anon_sym_help] = ACTIONS(2086), - [anon_sym_length] = ACTIONS(2086), - [anon_sym_output] = ACTIONS(2086), - [anon_sym_output_error] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_append] = ACTIONS(2086), - [anon_sym_metadata] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_read] = ACTIONS(2086), - [anon_sym_workdir] = ACTIONS(2086), - [anon_sym_write] = ACTIONS(2086), - [anon_sym_from_json] = ACTIONS(2086), - [anon_sym_to_json] = ACTIONS(2086), - [anon_sym_to_string] = ACTIONS(2086), - [anon_sym_to_float] = ACTIONS(2086), - [anon_sym_bash] = ACTIONS(2086), - [anon_sym_fish] = ACTIONS(2086), - [anon_sym_raw] = ACTIONS(2086), - [anon_sym_sh] = ACTIONS(2086), - [anon_sym_zsh] = ACTIONS(2086), - [anon_sym_random] = ACTIONS(2086), - [anon_sym_random_boolean] = ACTIONS(2086), - [anon_sym_random_float] = ACTIONS(2086), - [anon_sym_random_integer] = ACTIONS(2086), - [anon_sym_columns] = ACTIONS(2086), - [anon_sym_rows] = ACTIONS(2086), - [anon_sym_reverse] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, [417] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_COMMA] = ACTIONS(2090), - [sym_integer] = ACTIONS(2092), - [sym_float] = ACTIONS(2090), - [sym_string] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_COLON] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_elseif] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_transform] = ACTIONS(2092), - [anon_sym_filter] = ACTIONS(2092), - [anon_sym_find] = ACTIONS(2092), - [anon_sym_remove] = ACTIONS(2092), - [anon_sym_reduce] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_insert] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_table] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_assert_equal] = ACTIONS(2092), - [anon_sym_download] = ACTIONS(2092), - [anon_sym_help] = ACTIONS(2092), - [anon_sym_length] = ACTIONS(2092), - [anon_sym_output] = ACTIONS(2092), - [anon_sym_output_error] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_append] = ACTIONS(2092), - [anon_sym_metadata] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_read] = ACTIONS(2092), - [anon_sym_workdir] = ACTIONS(2092), - [anon_sym_write] = ACTIONS(2092), - [anon_sym_from_json] = ACTIONS(2092), - [anon_sym_to_json] = ACTIONS(2092), - [anon_sym_to_string] = ACTIONS(2092), - [anon_sym_to_float] = ACTIONS(2092), - [anon_sym_bash] = ACTIONS(2092), - [anon_sym_fish] = ACTIONS(2092), - [anon_sym_raw] = ACTIONS(2092), - [anon_sym_sh] = ACTIONS(2092), - [anon_sym_zsh] = ACTIONS(2092), - [anon_sym_random] = ACTIONS(2092), - [anon_sym_random_boolean] = ACTIONS(2092), - [anon_sym_random_float] = ACTIONS(2092), - [anon_sym_random_integer] = ACTIONS(2092), - [anon_sym_columns] = ACTIONS(2092), - [anon_sym_rows] = ACTIONS(2092), - [anon_sym_reverse] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2094), - [sym_integer] = ACTIONS(2096), - [sym_float] = ACTIONS(2094), - [sym_string] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_RBRACK] = ACTIONS(2094), - [anon_sym_COLON] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_elseif] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_transform] = ACTIONS(2096), - [anon_sym_filter] = ACTIONS(2096), - [anon_sym_find] = ACTIONS(2096), - [anon_sym_remove] = ACTIONS(2096), - [anon_sym_reduce] = ACTIONS(2096), - [anon_sym_select] = ACTIONS(2096), - [anon_sym_insert] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_table] = ACTIONS(2096), - [anon_sym_assert] = ACTIONS(2096), - [anon_sym_assert_equal] = ACTIONS(2096), - [anon_sym_download] = ACTIONS(2096), - [anon_sym_help] = ACTIONS(2096), - [anon_sym_length] = ACTIONS(2096), - [anon_sym_output] = ACTIONS(2096), - [anon_sym_output_error] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_append] = ACTIONS(2096), - [anon_sym_metadata] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_read] = ACTIONS(2096), - [anon_sym_workdir] = ACTIONS(2096), - [anon_sym_write] = ACTIONS(2096), - [anon_sym_from_json] = ACTIONS(2096), - [anon_sym_to_json] = ACTIONS(2096), - [anon_sym_to_string] = ACTIONS(2096), - [anon_sym_to_float] = ACTIONS(2096), - [anon_sym_bash] = ACTIONS(2096), - [anon_sym_fish] = ACTIONS(2096), - [anon_sym_raw] = ACTIONS(2096), - [anon_sym_sh] = ACTIONS(2096), - [anon_sym_zsh] = ACTIONS(2096), - [anon_sym_random] = ACTIONS(2096), - [anon_sym_random_boolean] = ACTIONS(2096), - [anon_sym_random_float] = ACTIONS(2096), - [anon_sym_random_integer] = ACTIONS(2096), - [anon_sym_columns] = ACTIONS(2096), - [anon_sym_rows] = ACTIONS(2096), - [anon_sym_reverse] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_elseif] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2098), - [sym_string] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_COLON] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_elseif] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_transform] = ACTIONS(2100), - [anon_sym_filter] = ACTIONS(2100), - [anon_sym_find] = ACTIONS(2100), - [anon_sym_remove] = ACTIONS(2100), - [anon_sym_reduce] = ACTIONS(2100), - [anon_sym_select] = ACTIONS(2100), - [anon_sym_insert] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_table] = ACTIONS(2100), - [anon_sym_assert] = ACTIONS(2100), - [anon_sym_assert_equal] = ACTIONS(2100), - [anon_sym_download] = ACTIONS(2100), - [anon_sym_help] = ACTIONS(2100), - [anon_sym_length] = ACTIONS(2100), - [anon_sym_output] = ACTIONS(2100), - [anon_sym_output_error] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_append] = ACTIONS(2100), - [anon_sym_metadata] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_read] = ACTIONS(2100), - [anon_sym_workdir] = ACTIONS(2100), - [anon_sym_write] = ACTIONS(2100), - [anon_sym_from_json] = ACTIONS(2100), - [anon_sym_to_json] = ACTIONS(2100), - [anon_sym_to_string] = ACTIONS(2100), - [anon_sym_to_float] = ACTIONS(2100), - [anon_sym_bash] = ACTIONS(2100), - [anon_sym_fish] = ACTIONS(2100), - [anon_sym_raw] = ACTIONS(2100), - [anon_sym_sh] = ACTIONS(2100), - [anon_sym_zsh] = ACTIONS(2100), - [anon_sym_random] = ACTIONS(2100), - [anon_sym_random_boolean] = ACTIONS(2100), - [anon_sym_random_float] = ACTIONS(2100), - [anon_sym_random_integer] = ACTIONS(2100), - [anon_sym_columns] = ACTIONS(2100), - [anon_sym_rows] = ACTIONS(2100), - [anon_sym_reverse] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_COMMA] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, [421] = { - [sym_else_if] = STATE(442), - [sym_else] = STATE(404), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [422] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_elseif] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_elseif] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_elseif] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [424] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_else_if] = STATE(424), + [aux_sym_if_else_repeat1] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [sym_integer] = ACTIONS(1275), + [sym_float] = ACTIONS(1273), + [sym_string] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_elseif] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_EQ_GT] = ACTIONS(1273), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_transform] = ACTIONS(1275), + [anon_sym_filter] = ACTIONS(1275), + [anon_sym_find] = ACTIONS(1275), + [anon_sym_remove] = ACTIONS(1275), + [anon_sym_reduce] = ACTIONS(1275), + [anon_sym_select] = ACTIONS(1275), + [anon_sym_insert] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_table] = ACTIONS(1275), + [anon_sym_assert] = ACTIONS(1275), + [anon_sym_assert_equal] = ACTIONS(1275), + [anon_sym_download] = ACTIONS(1275), + [anon_sym_help] = ACTIONS(1275), + [anon_sym_length] = ACTIONS(1275), + [anon_sym_output] = ACTIONS(1275), + [anon_sym_output_error] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_append] = ACTIONS(1275), + [anon_sym_metadata] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_read] = ACTIONS(1275), + [anon_sym_workdir] = ACTIONS(1275), + [anon_sym_write] = ACTIONS(1275), + [anon_sym_from_json] = ACTIONS(1275), + [anon_sym_to_json] = ACTIONS(1275), + [anon_sym_to_string] = ACTIONS(1275), + [anon_sym_to_float] = ACTIONS(1275), + [anon_sym_bash] = ACTIONS(1275), + [anon_sym_fish] = ACTIONS(1275), + [anon_sym_raw] = ACTIONS(1275), + [anon_sym_sh] = ACTIONS(1275), + [anon_sym_zsh] = ACTIONS(1275), + [anon_sym_random] = ACTIONS(1275), + [anon_sym_random_boolean] = ACTIONS(1275), + [anon_sym_random_float] = ACTIONS(1275), + [anon_sym_random_integer] = ACTIONS(1275), + [anon_sym_columns] = ACTIONS(1275), + [anon_sym_rows] = ACTIONS(1275), + [anon_sym_reverse] = ACTIONS(1275), }, [425] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_COMMA] = ACTIONS(2104), - [sym_integer] = ACTIONS(2106), - [sym_float] = ACTIONS(2104), - [sym_string] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_RBRACK] = ACTIONS(2104), - [anon_sym_COLON] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_elseif] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_transform] = ACTIONS(2106), - [anon_sym_filter] = ACTIONS(2106), - [anon_sym_find] = ACTIONS(2106), - [anon_sym_remove] = ACTIONS(2106), - [anon_sym_reduce] = ACTIONS(2106), - [anon_sym_select] = ACTIONS(2106), - [anon_sym_insert] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_table] = ACTIONS(2106), - [anon_sym_assert] = ACTIONS(2106), - [anon_sym_assert_equal] = ACTIONS(2106), - [anon_sym_download] = ACTIONS(2106), - [anon_sym_help] = ACTIONS(2106), - [anon_sym_length] = ACTIONS(2106), - [anon_sym_output] = ACTIONS(2106), - [anon_sym_output_error] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_append] = ACTIONS(2106), - [anon_sym_metadata] = ACTIONS(2106), - [anon_sym_move] = ACTIONS(2106), - [anon_sym_read] = ACTIONS(2106), - [anon_sym_workdir] = ACTIONS(2106), - [anon_sym_write] = ACTIONS(2106), - [anon_sym_from_json] = ACTIONS(2106), - [anon_sym_to_json] = ACTIONS(2106), - [anon_sym_to_string] = ACTIONS(2106), - [anon_sym_to_float] = ACTIONS(2106), - [anon_sym_bash] = ACTIONS(2106), - [anon_sym_fish] = ACTIONS(2106), - [anon_sym_raw] = ACTIONS(2106), - [anon_sym_sh] = ACTIONS(2106), - [anon_sym_zsh] = ACTIONS(2106), - [anon_sym_random] = ACTIONS(2106), - [anon_sym_random_boolean] = ACTIONS(2106), - [anon_sym_random_float] = ACTIONS(2106), - [anon_sym_random_integer] = ACTIONS(2106), - [anon_sym_columns] = ACTIONS(2106), - [anon_sym_rows] = ACTIONS(2106), - [anon_sym_reverse] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_COMMA] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [sym_integer] = ACTIONS(2110), - [sym_float] = ACTIONS(2108), - [sym_string] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_RBRACK] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_elseif] = ACTIONS(2108), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_transform] = ACTIONS(2110), - [anon_sym_filter] = ACTIONS(2110), - [anon_sym_find] = ACTIONS(2110), - [anon_sym_remove] = ACTIONS(2110), - [anon_sym_reduce] = ACTIONS(2110), - [anon_sym_select] = ACTIONS(2110), - [anon_sym_insert] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_table] = ACTIONS(2110), - [anon_sym_assert] = ACTIONS(2110), - [anon_sym_assert_equal] = ACTIONS(2110), - [anon_sym_download] = ACTIONS(2110), - [anon_sym_help] = ACTIONS(2110), - [anon_sym_length] = ACTIONS(2110), - [anon_sym_output] = ACTIONS(2110), - [anon_sym_output_error] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_append] = ACTIONS(2110), - [anon_sym_metadata] = ACTIONS(2110), - [anon_sym_move] = ACTIONS(2110), - [anon_sym_read] = ACTIONS(2110), - [anon_sym_workdir] = ACTIONS(2110), - [anon_sym_write] = ACTIONS(2110), - [anon_sym_from_json] = ACTIONS(2110), - [anon_sym_to_json] = ACTIONS(2110), - [anon_sym_to_string] = ACTIONS(2110), - [anon_sym_to_float] = ACTIONS(2110), - [anon_sym_bash] = ACTIONS(2110), - [anon_sym_fish] = ACTIONS(2110), - [anon_sym_raw] = ACTIONS(2110), - [anon_sym_sh] = ACTIONS(2110), - [anon_sym_zsh] = ACTIONS(2110), - [anon_sym_random] = ACTIONS(2110), - [anon_sym_random_boolean] = ACTIONS(2110), - [anon_sym_random_float] = ACTIONS(2110), - [anon_sym_random_integer] = ACTIONS(2110), - [anon_sym_columns] = ACTIONS(2110), - [anon_sym_rows] = ACTIONS(2110), - [anon_sym_reverse] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [sym_integer] = ACTIONS(2114), - [sym_float] = ACTIONS(2112), - [sym_string] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_elseif] = ACTIONS(2112), - [anon_sym_else] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_transform] = ACTIONS(2114), - [anon_sym_filter] = ACTIONS(2114), - [anon_sym_find] = ACTIONS(2114), - [anon_sym_remove] = ACTIONS(2114), - [anon_sym_reduce] = ACTIONS(2114), - [anon_sym_select] = ACTIONS(2114), - [anon_sym_insert] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_table] = ACTIONS(2114), - [anon_sym_assert] = ACTIONS(2114), - [anon_sym_assert_equal] = ACTIONS(2114), - [anon_sym_download] = ACTIONS(2114), - [anon_sym_help] = ACTIONS(2114), - [anon_sym_length] = ACTIONS(2114), - [anon_sym_output] = ACTIONS(2114), - [anon_sym_output_error] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_append] = ACTIONS(2114), - [anon_sym_metadata] = ACTIONS(2114), - [anon_sym_move] = ACTIONS(2114), - [anon_sym_read] = ACTIONS(2114), - [anon_sym_workdir] = ACTIONS(2114), - [anon_sym_write] = ACTIONS(2114), - [anon_sym_from_json] = ACTIONS(2114), - [anon_sym_to_json] = ACTIONS(2114), - [anon_sym_to_string] = ACTIONS(2114), - [anon_sym_to_float] = ACTIONS(2114), - [anon_sym_bash] = ACTIONS(2114), - [anon_sym_fish] = ACTIONS(2114), - [anon_sym_raw] = ACTIONS(2114), - [anon_sym_sh] = ACTIONS(2114), - [anon_sym_zsh] = ACTIONS(2114), - [anon_sym_random] = ACTIONS(2114), - [anon_sym_random_boolean] = ACTIONS(2114), - [anon_sym_random_float] = ACTIONS(2114), - [anon_sym_random_integer] = ACTIONS(2114), - [anon_sym_columns] = ACTIONS(2114), - [anon_sym_rows] = ACTIONS(2114), - [anon_sym_reverse] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(820), + [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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_expression] = STATE(411), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(203), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(934), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(172), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_assert_equal] = ACTIONS(209), + [anon_sym_download] = ACTIONS(209), + [anon_sym_help] = ACTIONS(209), + [anon_sym_length] = ACTIONS(209), + [anon_sym_output] = ACTIONS(209), + [anon_sym_output_error] = ACTIONS(209), + [anon_sym_type] = ACTIONS(209), + [anon_sym_append] = ACTIONS(209), + [anon_sym_metadata] = ACTIONS(209), + [anon_sym_move] = ACTIONS(209), + [anon_sym_read] = ACTIONS(209), + [anon_sym_workdir] = ACTIONS(209), + [anon_sym_write] = ACTIONS(209), + [anon_sym_from_json] = ACTIONS(209), + [anon_sym_to_json] = ACTIONS(209), + [anon_sym_to_string] = ACTIONS(209), + [anon_sym_to_float] = ACTIONS(209), + [anon_sym_bash] = ACTIONS(209), + [anon_sym_fish] = ACTIONS(209), + [anon_sym_raw] = ACTIONS(209), + [anon_sym_sh] = ACTIONS(209), + [anon_sym_zsh] = ACTIONS(209), + [anon_sym_random] = ACTIONS(209), + [anon_sym_random_boolean] = ACTIONS(209), + [anon_sym_random_float] = ACTIONS(209), + [anon_sym_random_integer] = ACTIONS(209), + [anon_sym_columns] = ACTIONS(209), + [anon_sym_rows] = ACTIONS(209), + [anon_sym_reverse] = ACTIONS(209), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2116), - [sym_integer] = ACTIONS(2118), - [sym_float] = ACTIONS(2116), - [sym_string] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_COLON] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_elseif] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_transform] = ACTIONS(2118), - [anon_sym_filter] = ACTIONS(2118), - [anon_sym_find] = ACTIONS(2118), - [anon_sym_remove] = ACTIONS(2118), - [anon_sym_reduce] = ACTIONS(2118), - [anon_sym_select] = ACTIONS(2118), - [anon_sym_insert] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_table] = ACTIONS(2118), - [anon_sym_assert] = ACTIONS(2118), - [anon_sym_assert_equal] = ACTIONS(2118), - [anon_sym_download] = ACTIONS(2118), - [anon_sym_help] = ACTIONS(2118), - [anon_sym_length] = ACTIONS(2118), - [anon_sym_output] = ACTIONS(2118), - [anon_sym_output_error] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_append] = ACTIONS(2118), - [anon_sym_metadata] = ACTIONS(2118), - [anon_sym_move] = ACTIONS(2118), - [anon_sym_read] = ACTIONS(2118), - [anon_sym_workdir] = ACTIONS(2118), - [anon_sym_write] = ACTIONS(2118), - [anon_sym_from_json] = ACTIONS(2118), - [anon_sym_to_json] = ACTIONS(2118), - [anon_sym_to_string] = ACTIONS(2118), - [anon_sym_to_float] = ACTIONS(2118), - [anon_sym_bash] = ACTIONS(2118), - [anon_sym_fish] = ACTIONS(2118), - [anon_sym_raw] = ACTIONS(2118), - [anon_sym_sh] = ACTIONS(2118), - [anon_sym_zsh] = ACTIONS(2118), - [anon_sym_random] = ACTIONS(2118), - [anon_sym_random_boolean] = ACTIONS(2118), - [anon_sym_random_float] = ACTIONS(2118), - [anon_sym_random_integer] = ACTIONS(2118), - [anon_sym_columns] = ACTIONS(2118), - [anon_sym_rows] = ACTIONS(2118), - [anon_sym_reverse] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_elseif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, [431] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [432] = { - [sym_math_operator] = STATE(789), - [sym_logic_operator] = STATE(790), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_COMMA] = ACTIONS(2120), - [sym_integer] = ACTIONS(2122), - [sym_float] = ACTIONS(2120), - [sym_string] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_COLON] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_elseif] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_transform] = ACTIONS(2122), - [anon_sym_filter] = ACTIONS(2122), - [anon_sym_find] = ACTIONS(2122), - [anon_sym_remove] = ACTIONS(2122), - [anon_sym_reduce] = ACTIONS(2122), - [anon_sym_select] = ACTIONS(2122), - [anon_sym_insert] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_table] = ACTIONS(2122), - [anon_sym_assert] = ACTIONS(2122), - [anon_sym_assert_equal] = ACTIONS(2122), - [anon_sym_download] = ACTIONS(2122), - [anon_sym_help] = ACTIONS(2122), - [anon_sym_length] = ACTIONS(2122), - [anon_sym_output] = ACTIONS(2122), - [anon_sym_output_error] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_append] = ACTIONS(2122), - [anon_sym_metadata] = ACTIONS(2122), - [anon_sym_move] = ACTIONS(2122), - [anon_sym_read] = ACTIONS(2122), - [anon_sym_workdir] = ACTIONS(2122), - [anon_sym_write] = ACTIONS(2122), - [anon_sym_from_json] = ACTIONS(2122), - [anon_sym_to_json] = ACTIONS(2122), - [anon_sym_to_string] = ACTIONS(2122), - [anon_sym_to_float] = ACTIONS(2122), - [anon_sym_bash] = ACTIONS(2122), - [anon_sym_fish] = ACTIONS(2122), - [anon_sym_raw] = ACTIONS(2122), - [anon_sym_sh] = ACTIONS(2122), - [anon_sym_zsh] = ACTIONS(2122), - [anon_sym_random] = ACTIONS(2122), - [anon_sym_random_boolean] = ACTIONS(2122), - [anon_sym_random_float] = ACTIONS(2122), - [anon_sym_random_integer] = ACTIONS(2122), - [anon_sym_columns] = ACTIONS(2122), - [anon_sym_rows] = ACTIONS(2122), - [anon_sym_reverse] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [434] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_elseif] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, [435] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_elseif] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [436] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_elseif] = ACTIONS(1951), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, [437] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_LPAREN] = 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_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [438] = { - [sym_expression] = STATE(559), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(376), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(1237), - [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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, [439] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_elseif] = ACTIONS(1934), - [anon_sym_else] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1393), + [sym_string] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_COLON] = ACTIONS(1393), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_EQ_GT] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_transform] = ACTIONS(1395), + [anon_sym_filter] = ACTIONS(1395), + [anon_sym_find] = ACTIONS(1395), + [anon_sym_remove] = ACTIONS(1395), + [anon_sym_reduce] = ACTIONS(1395), + [anon_sym_select] = ACTIONS(1395), + [anon_sym_insert] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_table] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_assert_equal] = ACTIONS(1395), + [anon_sym_download] = ACTIONS(1395), + [anon_sym_help] = ACTIONS(1395), + [anon_sym_length] = ACTIONS(1395), + [anon_sym_output] = ACTIONS(1395), + [anon_sym_output_error] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_append] = ACTIONS(1395), + [anon_sym_metadata] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_read] = ACTIONS(1395), + [anon_sym_workdir] = ACTIONS(1395), + [anon_sym_write] = ACTIONS(1395), + [anon_sym_from_json] = ACTIONS(1395), + [anon_sym_to_json] = ACTIONS(1395), + [anon_sym_to_string] = ACTIONS(1395), + [anon_sym_to_float] = ACTIONS(1395), + [anon_sym_bash] = ACTIONS(1395), + [anon_sym_fish] = ACTIONS(1395), + [anon_sym_raw] = ACTIONS(1395), + [anon_sym_sh] = ACTIONS(1395), + [anon_sym_zsh] = ACTIONS(1395), + [anon_sym_random] = ACTIONS(1395), + [anon_sym_random_boolean] = ACTIONS(1395), + [anon_sym_random_float] = ACTIONS(1395), + [anon_sym_random_integer] = ACTIONS(1395), + [anon_sym_columns] = ACTIONS(1395), + [anon_sym_rows] = ACTIONS(1395), + [anon_sym_reverse] = ACTIONS(1395), }, [440] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), + [sym_expression] = STATE(863), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(834), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [441] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_elseif] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1385), + [sym_string] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_COLON] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_EQ_GT] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_transform] = ACTIONS(1387), + [anon_sym_filter] = ACTIONS(1387), + [anon_sym_find] = ACTIONS(1387), + [anon_sym_remove] = ACTIONS(1387), + [anon_sym_reduce] = ACTIONS(1387), + [anon_sym_select] = ACTIONS(1387), + [anon_sym_insert] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_table] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_assert_equal] = ACTIONS(1387), + [anon_sym_download] = ACTIONS(1387), + [anon_sym_help] = ACTIONS(1387), + [anon_sym_length] = ACTIONS(1387), + [anon_sym_output] = ACTIONS(1387), + [anon_sym_output_error] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_append] = ACTIONS(1387), + [anon_sym_metadata] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1387), + [anon_sym_read] = ACTIONS(1387), + [anon_sym_workdir] = ACTIONS(1387), + [anon_sym_write] = ACTIONS(1387), + [anon_sym_from_json] = ACTIONS(1387), + [anon_sym_to_json] = ACTIONS(1387), + [anon_sym_to_string] = ACTIONS(1387), + [anon_sym_to_float] = ACTIONS(1387), + [anon_sym_bash] = ACTIONS(1387), + [anon_sym_fish] = ACTIONS(1387), + [anon_sym_raw] = ACTIONS(1387), + [anon_sym_sh] = ACTIONS(1387), + [anon_sym_zsh] = ACTIONS(1387), + [anon_sym_random] = ACTIONS(1387), + [anon_sym_random_boolean] = ACTIONS(1387), + [anon_sym_random_float] = ACTIONS(1387), + [anon_sym_random_integer] = ACTIONS(1387), + [anon_sym_columns] = ACTIONS(1387), + [anon_sym_rows] = ACTIONS(1387), + [anon_sym_reverse] = ACTIONS(1387), }, [442] = { - [sym_else_if] = STATE(442), - [aux_sym_if_else_repeat1] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1955), - [sym_string] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_elseif] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_transform] = ACTIONS(1957), - [anon_sym_filter] = ACTIONS(1957), - [anon_sym_find] = ACTIONS(1957), - [anon_sym_remove] = ACTIONS(1957), - [anon_sym_reduce] = ACTIONS(1957), - [anon_sym_select] = ACTIONS(1957), - [anon_sym_insert] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_table] = ACTIONS(1957), - [anon_sym_assert] = ACTIONS(1957), - [anon_sym_assert_equal] = ACTIONS(1957), - [anon_sym_download] = ACTIONS(1957), - [anon_sym_help] = ACTIONS(1957), - [anon_sym_length] = ACTIONS(1957), - [anon_sym_output] = ACTIONS(1957), - [anon_sym_output_error] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_append] = ACTIONS(1957), - [anon_sym_metadata] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [anon_sym_read] = ACTIONS(1957), - [anon_sym_workdir] = ACTIONS(1957), - [anon_sym_write] = ACTIONS(1957), - [anon_sym_from_json] = ACTIONS(1957), - [anon_sym_to_json] = ACTIONS(1957), - [anon_sym_to_string] = ACTIONS(1957), - [anon_sym_to_float] = ACTIONS(1957), - [anon_sym_bash] = ACTIONS(1957), - [anon_sym_fish] = ACTIONS(1957), - [anon_sym_raw] = ACTIONS(1957), - [anon_sym_sh] = ACTIONS(1957), - [anon_sym_zsh] = ACTIONS(1957), - [anon_sym_random] = ACTIONS(1957), - [anon_sym_random_boolean] = ACTIONS(1957), - [anon_sym_random_float] = ACTIONS(1957), - [anon_sym_random_integer] = ACTIONS(1957), - [anon_sym_columns] = ACTIONS(1957), - [anon_sym_rows] = ACTIONS(1957), - [anon_sym_reverse] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1381), + [sym_string] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACK] = ACTIONS(1381), + [anon_sym_async] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_EQ_GT] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_transform] = ACTIONS(1383), + [anon_sym_filter] = ACTIONS(1383), + [anon_sym_find] = ACTIONS(1383), + [anon_sym_remove] = ACTIONS(1383), + [anon_sym_reduce] = ACTIONS(1383), + [anon_sym_select] = ACTIONS(1383), + [anon_sym_insert] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_table] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_assert_equal] = ACTIONS(1383), + [anon_sym_download] = ACTIONS(1383), + [anon_sym_help] = ACTIONS(1383), + [anon_sym_length] = ACTIONS(1383), + [anon_sym_output] = ACTIONS(1383), + [anon_sym_output_error] = ACTIONS(1383), + [anon_sym_type] = ACTIONS(1383), + [anon_sym_append] = ACTIONS(1383), + [anon_sym_metadata] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1383), + [anon_sym_read] = ACTIONS(1383), + [anon_sym_workdir] = ACTIONS(1383), + [anon_sym_write] = ACTIONS(1383), + [anon_sym_from_json] = ACTIONS(1383), + [anon_sym_to_json] = ACTIONS(1383), + [anon_sym_to_string] = ACTIONS(1383), + [anon_sym_to_float] = ACTIONS(1383), + [anon_sym_bash] = ACTIONS(1383), + [anon_sym_fish] = ACTIONS(1383), + [anon_sym_raw] = ACTIONS(1383), + [anon_sym_sh] = ACTIONS(1383), + [anon_sym_zsh] = ACTIONS(1383), + [anon_sym_random] = ACTIONS(1383), + [anon_sym_random_boolean] = ACTIONS(1383), + [anon_sym_random_float] = ACTIONS(1383), + [anon_sym_random_integer] = ACTIONS(1383), + [anon_sym_columns] = ACTIONS(1383), + [anon_sym_rows] = ACTIONS(1383), + [anon_sym_reverse] = ACTIONS(1383), }, [443] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [sym_integer] = ACTIONS(1404), + [sym_float] = ACTIONS(1402), + [sym_string] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_COLON] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_SLASH] = ACTIONS(1402), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_EQ_GT] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_transform] = ACTIONS(1404), + [anon_sym_filter] = ACTIONS(1404), + [anon_sym_find] = ACTIONS(1404), + [anon_sym_remove] = ACTIONS(1404), + [anon_sym_reduce] = ACTIONS(1404), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_insert] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_table] = ACTIONS(1404), + [anon_sym_assert] = ACTIONS(1404), + [anon_sym_assert_equal] = ACTIONS(1404), + [anon_sym_download] = ACTIONS(1404), + [anon_sym_help] = ACTIONS(1404), + [anon_sym_length] = ACTIONS(1404), + [anon_sym_output] = ACTIONS(1404), + [anon_sym_output_error] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_append] = ACTIONS(1404), + [anon_sym_metadata] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_read] = ACTIONS(1404), + [anon_sym_workdir] = ACTIONS(1404), + [anon_sym_write] = ACTIONS(1404), + [anon_sym_from_json] = ACTIONS(1404), + [anon_sym_to_json] = ACTIONS(1404), + [anon_sym_to_string] = ACTIONS(1404), + [anon_sym_to_float] = ACTIONS(1404), + [anon_sym_bash] = ACTIONS(1404), + [anon_sym_fish] = ACTIONS(1404), + [anon_sym_raw] = ACTIONS(1404), + [anon_sym_sh] = ACTIONS(1404), + [anon_sym_zsh] = ACTIONS(1404), + [anon_sym_random] = ACTIONS(1404), + [anon_sym_random_boolean] = ACTIONS(1404), + [anon_sym_random_float] = ACTIONS(1404), + [anon_sym_random_integer] = ACTIONS(1404), + [anon_sym_columns] = ACTIONS(1404), + [anon_sym_rows] = ACTIONS(1404), + [anon_sym_reverse] = ACTIONS(1404), }, [444] = { - [sym_math_operator] = STATE(660), - [sym_logic_operator] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2130), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_COMMA] = ACTIONS(1330), + [sym_integer] = ACTIONS(1332), + [sym_float] = ACTIONS(1330), + [sym_string] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_EQ_GT] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_transform] = ACTIONS(1332), + [anon_sym_filter] = ACTIONS(1332), + [anon_sym_find] = ACTIONS(1332), + [anon_sym_remove] = ACTIONS(1332), + [anon_sym_reduce] = ACTIONS(1332), + [anon_sym_select] = ACTIONS(1332), + [anon_sym_insert] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_table] = ACTIONS(1332), + [anon_sym_assert] = ACTIONS(1332), + [anon_sym_assert_equal] = ACTIONS(1332), + [anon_sym_download] = ACTIONS(1332), + [anon_sym_help] = ACTIONS(1332), + [anon_sym_length] = ACTIONS(1332), + [anon_sym_output] = ACTIONS(1332), + [anon_sym_output_error] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_append] = ACTIONS(1332), + [anon_sym_metadata] = ACTIONS(1332), + [anon_sym_move] = ACTIONS(1332), + [anon_sym_read] = ACTIONS(1332), + [anon_sym_workdir] = ACTIONS(1332), + [anon_sym_write] = ACTIONS(1332), + [anon_sym_from_json] = ACTIONS(1332), + [anon_sym_to_json] = ACTIONS(1332), + [anon_sym_to_string] = ACTIONS(1332), + [anon_sym_to_float] = ACTIONS(1332), + [anon_sym_bash] = ACTIONS(1332), + [anon_sym_fish] = ACTIONS(1332), + [anon_sym_raw] = ACTIONS(1332), + [anon_sym_sh] = ACTIONS(1332), + [anon_sym_zsh] = ACTIONS(1332), + [anon_sym_random] = ACTIONS(1332), + [anon_sym_random_boolean] = ACTIONS(1332), + [anon_sym_random_float] = ACTIONS(1332), + [anon_sym_random_integer] = ACTIONS(1332), + [anon_sym_columns] = ACTIONS(1332), + [anon_sym_rows] = ACTIONS(1332), + [anon_sym_reverse] = ACTIONS(1332), }, [445] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_elseif] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1425), + [sym_string] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACK] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_EQ_GT] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_transform] = ACTIONS(1427), + [anon_sym_filter] = ACTIONS(1427), + [anon_sym_find] = ACTIONS(1427), + [anon_sym_remove] = ACTIONS(1427), + [anon_sym_reduce] = ACTIONS(1427), + [anon_sym_select] = ACTIONS(1427), + [anon_sym_insert] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_table] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_assert_equal] = ACTIONS(1427), + [anon_sym_download] = ACTIONS(1427), + [anon_sym_help] = ACTIONS(1427), + [anon_sym_length] = ACTIONS(1427), + [anon_sym_output] = ACTIONS(1427), + [anon_sym_output_error] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_append] = ACTIONS(1427), + [anon_sym_metadata] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_read] = ACTIONS(1427), + [anon_sym_workdir] = ACTIONS(1427), + [anon_sym_write] = ACTIONS(1427), + [anon_sym_from_json] = ACTIONS(1427), + [anon_sym_to_json] = ACTIONS(1427), + [anon_sym_to_string] = ACTIONS(1427), + [anon_sym_to_float] = ACTIONS(1427), + [anon_sym_bash] = ACTIONS(1427), + [anon_sym_fish] = ACTIONS(1427), + [anon_sym_raw] = ACTIONS(1427), + [anon_sym_sh] = ACTIONS(1427), + [anon_sym_zsh] = ACTIONS(1427), + [anon_sym_random] = ACTIONS(1427), + [anon_sym_random_boolean] = ACTIONS(1427), + [anon_sym_random_float] = ACTIONS(1427), + [anon_sym_random_integer] = ACTIONS(1427), + [anon_sym_columns] = ACTIONS(1427), + [anon_sym_rows] = ACTIONS(1427), + [anon_sym_reverse] = ACTIONS(1427), }, [446] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [sym_integer] = ACTIONS(1416), + [sym_float] = ACTIONS(1414), + [sym_string] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_EQ_EQ] = ACTIONS(1414), + [anon_sym_BANG_EQ] = ACTIONS(1414), + [anon_sym_AMP_AMP] = ACTIONS(1414), + [anon_sym_PIPE_PIPE] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT_EQ] = ACTIONS(1414), + [anon_sym_LT_EQ] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_EQ_GT] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_transform] = ACTIONS(1416), + [anon_sym_filter] = ACTIONS(1416), + [anon_sym_find] = ACTIONS(1416), + [anon_sym_remove] = ACTIONS(1416), + [anon_sym_reduce] = ACTIONS(1416), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_insert] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_table] = ACTIONS(1416), + [anon_sym_assert] = ACTIONS(1416), + [anon_sym_assert_equal] = ACTIONS(1416), + [anon_sym_download] = ACTIONS(1416), + [anon_sym_help] = ACTIONS(1416), + [anon_sym_length] = ACTIONS(1416), + [anon_sym_output] = ACTIONS(1416), + [anon_sym_output_error] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_append] = ACTIONS(1416), + [anon_sym_metadata] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [anon_sym_read] = ACTIONS(1416), + [anon_sym_workdir] = ACTIONS(1416), + [anon_sym_write] = ACTIONS(1416), + [anon_sym_from_json] = ACTIONS(1416), + [anon_sym_to_json] = ACTIONS(1416), + [anon_sym_to_string] = ACTIONS(1416), + [anon_sym_to_float] = ACTIONS(1416), + [anon_sym_bash] = ACTIONS(1416), + [anon_sym_fish] = ACTIONS(1416), + [anon_sym_raw] = ACTIONS(1416), + [anon_sym_sh] = ACTIONS(1416), + [anon_sym_zsh] = ACTIONS(1416), + [anon_sym_random] = ACTIONS(1416), + [anon_sym_random_boolean] = ACTIONS(1416), + [anon_sym_random_float] = ACTIONS(1416), + [anon_sym_random_integer] = ACTIONS(1416), + [anon_sym_columns] = ACTIONS(1416), + [anon_sym_rows] = ACTIONS(1416), + [anon_sym_reverse] = ACTIONS(1416), }, [447] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(447), - [sym_identifier] = ACTIONS(1259), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_elseif] = ACTIONS(1257), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, [448] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1379), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [sym_integer] = ACTIONS(1379), + [sym_float] = ACTIONS(1377), + [sym_string] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_EQ_EQ] = ACTIONS(1377), + [anon_sym_BANG_EQ] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1377), + [anon_sym_LT_EQ] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_match] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_transform] = ACTIONS(1379), + [anon_sym_filter] = ACTIONS(1379), + [anon_sym_find] = ACTIONS(1379), + [anon_sym_remove] = ACTIONS(1379), + [anon_sym_reduce] = ACTIONS(1379), + [anon_sym_select] = ACTIONS(1379), + [anon_sym_insert] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_table] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_assert_equal] = ACTIONS(1379), + [anon_sym_download] = ACTIONS(1379), + [anon_sym_help] = ACTIONS(1379), + [anon_sym_length] = ACTIONS(1379), + [anon_sym_output] = ACTIONS(1379), + [anon_sym_output_error] = ACTIONS(1379), + [anon_sym_type] = ACTIONS(1379), + [anon_sym_append] = ACTIONS(1379), + [anon_sym_metadata] = ACTIONS(1379), + [anon_sym_move] = ACTIONS(1379), + [anon_sym_read] = ACTIONS(1379), + [anon_sym_workdir] = ACTIONS(1379), + [anon_sym_write] = ACTIONS(1379), + [anon_sym_from_json] = ACTIONS(1379), + [anon_sym_to_json] = ACTIONS(1379), + [anon_sym_to_string] = ACTIONS(1379), + [anon_sym_to_float] = ACTIONS(1379), + [anon_sym_bash] = ACTIONS(1379), + [anon_sym_fish] = ACTIONS(1379), + [anon_sym_raw] = ACTIONS(1379), + [anon_sym_sh] = ACTIONS(1379), + [anon_sym_zsh] = ACTIONS(1379), + [anon_sym_random] = ACTIONS(1379), + [anon_sym_random_boolean] = ACTIONS(1379), + [anon_sym_random_float] = ACTIONS(1379), + [anon_sym_random_integer] = ACTIONS(1379), + [anon_sym_columns] = ACTIONS(1379), + [anon_sym_rows] = ACTIONS(1379), + [anon_sym_reverse] = ACTIONS(1379), }, [449] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), + [sym_expression] = STATE(863), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(874), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [450] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_elseif] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_COMMA] = ACTIONS(1326), + [sym_integer] = ACTIONS(1328), + [sym_float] = ACTIONS(1326), + [sym_string] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_EQ_GT] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_transform] = ACTIONS(1328), + [anon_sym_filter] = ACTIONS(1328), + [anon_sym_find] = ACTIONS(1328), + [anon_sym_remove] = ACTIONS(1328), + [anon_sym_reduce] = ACTIONS(1328), + [anon_sym_select] = ACTIONS(1328), + [anon_sym_insert] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_table] = ACTIONS(1328), + [anon_sym_assert] = ACTIONS(1328), + [anon_sym_assert_equal] = ACTIONS(1328), + [anon_sym_download] = ACTIONS(1328), + [anon_sym_help] = ACTIONS(1328), + [anon_sym_length] = ACTIONS(1328), + [anon_sym_output] = ACTIONS(1328), + [anon_sym_output_error] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_append] = ACTIONS(1328), + [anon_sym_metadata] = ACTIONS(1328), + [anon_sym_move] = ACTIONS(1328), + [anon_sym_read] = ACTIONS(1328), + [anon_sym_workdir] = ACTIONS(1328), + [anon_sym_write] = ACTIONS(1328), + [anon_sym_from_json] = ACTIONS(1328), + [anon_sym_to_json] = ACTIONS(1328), + [anon_sym_to_string] = ACTIONS(1328), + [anon_sym_to_float] = ACTIONS(1328), + [anon_sym_bash] = ACTIONS(1328), + [anon_sym_fish] = ACTIONS(1328), + [anon_sym_raw] = ACTIONS(1328), + [anon_sym_sh] = ACTIONS(1328), + [anon_sym_zsh] = ACTIONS(1328), + [anon_sym_random] = ACTIONS(1328), + [anon_sym_random_boolean] = ACTIONS(1328), + [anon_sym_random_float] = ACTIONS(1328), + [anon_sym_random_integer] = ACTIONS(1328), + [anon_sym_columns] = ACTIONS(1328), + [anon_sym_rows] = ACTIONS(1328), + [anon_sym_reverse] = ACTIONS(1328), }, [451] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [sym_expression] = STATE(844), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(834), + [sym_identifier] = ACTIONS(836), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(842), + [sym_integer] = ACTIONS(845), + [sym_float] = ACTIONS(848), + [sym_string] = ACTIONS(848), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_async] = ACTIONS(857), + [anon_sym_if] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_EQ_GT] = ACTIONS(862), + [anon_sym_while] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_transform] = ACTIONS(860), + [anon_sym_filter] = ACTIONS(860), + [anon_sym_find] = ACTIONS(860), + [anon_sym_remove] = ACTIONS(860), + [anon_sym_reduce] = ACTIONS(860), + [anon_sym_select] = ACTIONS(860), + [anon_sym_insert] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_table] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_assert_equal] = ACTIONS(871), + [anon_sym_download] = ACTIONS(871), + [anon_sym_help] = ACTIONS(871), + [anon_sym_length] = ACTIONS(871), + [anon_sym_output] = ACTIONS(871), + [anon_sym_output_error] = ACTIONS(871), + [anon_sym_type] = ACTIONS(871), + [anon_sym_append] = ACTIONS(871), + [anon_sym_metadata] = ACTIONS(871), + [anon_sym_move] = ACTIONS(871), + [anon_sym_read] = ACTIONS(871), + [anon_sym_workdir] = ACTIONS(871), + [anon_sym_write] = ACTIONS(871), + [anon_sym_from_json] = ACTIONS(871), + [anon_sym_to_json] = ACTIONS(871), + [anon_sym_to_string] = ACTIONS(871), + [anon_sym_to_float] = ACTIONS(871), + [anon_sym_bash] = ACTIONS(871), + [anon_sym_fish] = ACTIONS(871), + [anon_sym_raw] = ACTIONS(871), + [anon_sym_sh] = ACTIONS(871), + [anon_sym_zsh] = ACTIONS(871), + [anon_sym_random] = ACTIONS(871), + [anon_sym_random_boolean] = ACTIONS(871), + [anon_sym_random_float] = ACTIONS(871), + [anon_sym_random_integer] = ACTIONS(871), + [anon_sym_columns] = ACTIONS(871), + [anon_sym_rows] = ACTIONS(871), + [anon_sym_reverse] = ACTIONS(871), }, [452] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [sym_integer] = ACTIONS(1449), + [sym_float] = ACTIONS(1447), + [sym_string] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_transform] = ACTIONS(1449), + [anon_sym_filter] = ACTIONS(1449), + [anon_sym_find] = ACTIONS(1449), + [anon_sym_remove] = ACTIONS(1449), + [anon_sym_reduce] = ACTIONS(1449), + [anon_sym_select] = ACTIONS(1449), + [anon_sym_insert] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_table] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_assert_equal] = ACTIONS(1449), + [anon_sym_download] = ACTIONS(1449), + [anon_sym_help] = ACTIONS(1449), + [anon_sym_length] = ACTIONS(1449), + [anon_sym_output] = ACTIONS(1449), + [anon_sym_output_error] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_append] = ACTIONS(1449), + [anon_sym_metadata] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [anon_sym_read] = ACTIONS(1449), + [anon_sym_workdir] = ACTIONS(1449), + [anon_sym_write] = ACTIONS(1449), + [anon_sym_from_json] = ACTIONS(1449), + [anon_sym_to_json] = ACTIONS(1449), + [anon_sym_to_string] = ACTIONS(1449), + [anon_sym_to_float] = ACTIONS(1449), + [anon_sym_bash] = ACTIONS(1449), + [anon_sym_fish] = ACTIONS(1449), + [anon_sym_raw] = ACTIONS(1449), + [anon_sym_sh] = ACTIONS(1449), + [anon_sym_zsh] = ACTIONS(1449), + [anon_sym_random] = ACTIONS(1449), + [anon_sym_random_boolean] = ACTIONS(1449), + [anon_sym_random_float] = ACTIONS(1449), + [anon_sym_random_integer] = ACTIONS(1449), + [anon_sym_columns] = ACTIONS(1449), + [anon_sym_rows] = ACTIONS(1449), + [anon_sym_reverse] = ACTIONS(1449), }, [453] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), }, [454] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1375), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2094), - [sym_integer] = ACTIONS(2096), - [sym_float] = ACTIONS(2094), - [sym_string] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_RBRACK] = ACTIONS(2094), - [anon_sym_COLON] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_transform] = ACTIONS(2096), - [anon_sym_filter] = ACTIONS(2096), - [anon_sym_find] = ACTIONS(2096), - [anon_sym_remove] = ACTIONS(2096), - [anon_sym_reduce] = ACTIONS(2096), - [anon_sym_select] = ACTIONS(2096), - [anon_sym_insert] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_table] = ACTIONS(2096), - [anon_sym_assert] = ACTIONS(2096), - [anon_sym_assert_equal] = ACTIONS(2096), - [anon_sym_download] = ACTIONS(2096), - [anon_sym_help] = ACTIONS(2096), - [anon_sym_length] = ACTIONS(2096), - [anon_sym_output] = ACTIONS(2096), - [anon_sym_output_error] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_append] = ACTIONS(2096), - [anon_sym_metadata] = ACTIONS(2096), - [anon_sym_move] = ACTIONS(2096), - [anon_sym_read] = ACTIONS(2096), - [anon_sym_workdir] = ACTIONS(2096), - [anon_sym_write] = ACTIONS(2096), - [anon_sym_from_json] = ACTIONS(2096), - [anon_sym_to_json] = ACTIONS(2096), - [anon_sym_to_string] = ACTIONS(2096), - [anon_sym_to_float] = ACTIONS(2096), - [anon_sym_bash] = ACTIONS(2096), - [anon_sym_fish] = ACTIONS(2096), - [anon_sym_raw] = ACTIONS(2096), - [anon_sym_sh] = ACTIONS(2096), - [anon_sym_zsh] = ACTIONS(2096), - [anon_sym_random] = ACTIONS(2096), - [anon_sym_random_boolean] = ACTIONS(2096), - [anon_sym_random_float] = ACTIONS(2096), - [anon_sym_random_integer] = ACTIONS(2096), - [anon_sym_columns] = ACTIONS(2096), - [anon_sym_rows] = ACTIONS(2096), - [anon_sym_reverse] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1373), + [sym_string] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(1375), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_match] = ACTIONS(1375), + [anon_sym_EQ_GT] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_transform] = ACTIONS(1375), + [anon_sym_filter] = ACTIONS(1375), + [anon_sym_find] = ACTIONS(1375), + [anon_sym_remove] = ACTIONS(1375), + [anon_sym_reduce] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1375), + [anon_sym_insert] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_table] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_assert_equal] = ACTIONS(1375), + [anon_sym_download] = ACTIONS(1375), + [anon_sym_help] = ACTIONS(1375), + [anon_sym_length] = ACTIONS(1375), + [anon_sym_output] = ACTIONS(1375), + [anon_sym_output_error] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1375), + [anon_sym_append] = ACTIONS(1375), + [anon_sym_metadata] = ACTIONS(1375), + [anon_sym_move] = ACTIONS(1375), + [anon_sym_read] = ACTIONS(1375), + [anon_sym_workdir] = ACTIONS(1375), + [anon_sym_write] = ACTIONS(1375), + [anon_sym_from_json] = ACTIONS(1375), + [anon_sym_to_json] = ACTIONS(1375), + [anon_sym_to_string] = ACTIONS(1375), + [anon_sym_to_float] = ACTIONS(1375), + [anon_sym_bash] = ACTIONS(1375), + [anon_sym_fish] = ACTIONS(1375), + [anon_sym_raw] = ACTIONS(1375), + [anon_sym_sh] = ACTIONS(1375), + [anon_sym_zsh] = ACTIONS(1375), + [anon_sym_random] = ACTIONS(1375), + [anon_sym_random_boolean] = ACTIONS(1375), + [anon_sym_random_float] = ACTIONS(1375), + [anon_sym_random_integer] = ACTIONS(1375), + [anon_sym_columns] = ACTIONS(1375), + [anon_sym_rows] = ACTIONS(1375), + [anon_sym_reverse] = ACTIONS(1375), }, [456] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1365), + [sym_string] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_EQ_GT] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_transform] = ACTIONS(1367), + [anon_sym_filter] = ACTIONS(1367), + [anon_sym_find] = ACTIONS(1367), + [anon_sym_remove] = ACTIONS(1367), + [anon_sym_reduce] = ACTIONS(1367), + [anon_sym_select] = ACTIONS(1367), + [anon_sym_insert] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_table] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_assert_equal] = ACTIONS(1367), + [anon_sym_download] = ACTIONS(1367), + [anon_sym_help] = ACTIONS(1367), + [anon_sym_length] = ACTIONS(1367), + [anon_sym_output] = ACTIONS(1367), + [anon_sym_output_error] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_append] = ACTIONS(1367), + [anon_sym_metadata] = ACTIONS(1367), + [anon_sym_move] = ACTIONS(1367), + [anon_sym_read] = ACTIONS(1367), + [anon_sym_workdir] = ACTIONS(1367), + [anon_sym_write] = ACTIONS(1367), + [anon_sym_from_json] = ACTIONS(1367), + [anon_sym_to_json] = ACTIONS(1367), + [anon_sym_to_string] = ACTIONS(1367), + [anon_sym_to_float] = ACTIONS(1367), + [anon_sym_bash] = ACTIONS(1367), + [anon_sym_fish] = ACTIONS(1367), + [anon_sym_raw] = ACTIONS(1367), + [anon_sym_sh] = ACTIONS(1367), + [anon_sym_zsh] = ACTIONS(1367), + [anon_sym_random] = ACTIONS(1367), + [anon_sym_random_boolean] = ACTIONS(1367), + [anon_sym_random_float] = ACTIONS(1367), + [anon_sym_random_integer] = ACTIONS(1367), + [anon_sym_columns] = ACTIONS(1367), + [anon_sym_rows] = ACTIONS(1367), + [anon_sym_reverse] = ACTIONS(1367), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), + [sym_expression] = STATE(844), + [sym__expression_kind] = STATE(795), + [sym_value] = STATE(795), + [sym_boolean] = STATE(792), + [sym_list] = STATE(792), + [sym_map] = STATE(792), + [sym_future] = STATE(792), + [sym_index] = STATE(795), + [sym_math] = STATE(795), + [sym_logic] = STATE(795), + [sym_identifier_list] = STATE(973), + [sym_table] = STATE(792), + [sym_function] = STATE(792), + [sym_function_call] = STATE(795), + [sym__context_defined_function] = STATE(790), + [sym_built_in_function] = STATE(790), + [sym__built_in_function_name] = STATE(209), + [aux_sym_match_repeat1] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_COMMA] = ACTIONS(2000), - [sym_integer] = ACTIONS(2002), - [sym_float] = ACTIONS(2000), - [sym_string] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_RBRACK] = ACTIONS(2000), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(2000), - [anon_sym_EQ_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_AMP_AMP] = ACTIONS(2000), - [anon_sym_PIPE_PIPE] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_transform] = ACTIONS(2002), - [anon_sym_filter] = ACTIONS(2002), - [anon_sym_find] = ACTIONS(2002), - [anon_sym_remove] = ACTIONS(2002), - [anon_sym_reduce] = ACTIONS(2002), - [anon_sym_select] = ACTIONS(2002), - [anon_sym_insert] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_table] = ACTIONS(2002), - [anon_sym_assert] = ACTIONS(2002), - [anon_sym_assert_equal] = ACTIONS(2002), - [anon_sym_download] = ACTIONS(2002), - [anon_sym_help] = ACTIONS(2002), - [anon_sym_length] = ACTIONS(2002), - [anon_sym_output] = ACTIONS(2002), - [anon_sym_output_error] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_append] = ACTIONS(2002), - [anon_sym_metadata] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [anon_sym_read] = ACTIONS(2002), - [anon_sym_workdir] = ACTIONS(2002), - [anon_sym_write] = ACTIONS(2002), - [anon_sym_from_json] = ACTIONS(2002), - [anon_sym_to_json] = ACTIONS(2002), - [anon_sym_to_string] = ACTIONS(2002), - [anon_sym_to_float] = ACTIONS(2002), - [anon_sym_bash] = ACTIONS(2002), - [anon_sym_fish] = ACTIONS(2002), - [anon_sym_raw] = ACTIONS(2002), - [anon_sym_sh] = ACTIONS(2002), - [anon_sym_zsh] = ACTIONS(2002), - [anon_sym_random] = ACTIONS(2002), - [anon_sym_random_boolean] = ACTIONS(2002), - [anon_sym_random_float] = ACTIONS(2002), - [anon_sym_random_integer] = ACTIONS(2002), - [anon_sym_columns] = ACTIONS(2002), - [anon_sym_rows] = ACTIONS(2002), - [anon_sym_reverse] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(880), + [sym_integer] = ACTIONS(882), + [sym_float] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [anon_sym_true] = ACTIONS(886), + [anon_sym_false] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_async] = ACTIONS(890), + [anon_sym_if] = ACTIONS(892), + [anon_sym_match] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(894), + [anon_sym_while] = ACTIONS(892), + [anon_sym_for] = ACTIONS(892), + [anon_sym_transform] = ACTIONS(892), + [anon_sym_filter] = ACTIONS(892), + [anon_sym_find] = ACTIONS(892), + [anon_sym_remove] = ACTIONS(892), + [anon_sym_reduce] = ACTIONS(892), + [anon_sym_select] = ACTIONS(892), + [anon_sym_insert] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(45), + [anon_sym_table] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(49), + [anon_sym_assert_equal] = ACTIONS(49), + [anon_sym_download] = ACTIONS(49), + [anon_sym_help] = ACTIONS(49), + [anon_sym_length] = ACTIONS(49), + [anon_sym_output] = ACTIONS(49), + [anon_sym_output_error] = ACTIONS(49), + [anon_sym_type] = ACTIONS(49), + [anon_sym_append] = ACTIONS(49), + [anon_sym_metadata] = ACTIONS(49), + [anon_sym_move] = ACTIONS(49), + [anon_sym_read] = ACTIONS(49), + [anon_sym_workdir] = ACTIONS(49), + [anon_sym_write] = ACTIONS(49), + [anon_sym_from_json] = ACTIONS(49), + [anon_sym_to_json] = ACTIONS(49), + [anon_sym_to_string] = ACTIONS(49), + [anon_sym_to_float] = ACTIONS(49), + [anon_sym_bash] = ACTIONS(49), + [anon_sym_fish] = ACTIONS(49), + [anon_sym_raw] = ACTIONS(49), + [anon_sym_sh] = ACTIONS(49), + [anon_sym_zsh] = ACTIONS(49), + [anon_sym_random] = ACTIONS(49), + [anon_sym_random_boolean] = ACTIONS(49), + [anon_sym_random_float] = ACTIONS(49), + [anon_sym_random_integer] = ACTIONS(49), + [anon_sym_columns] = ACTIONS(49), + [anon_sym_rows] = ACTIONS(49), + [anon_sym_reverse] = ACTIONS(49), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2006), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(2004), - [sym_integer] = ACTIONS(2006), - [sym_float] = ACTIONS(2004), - [sym_string] = ACTIONS(2004), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2004), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_EQ_EQ] = ACTIONS(2004), - [anon_sym_BANG_EQ] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_GT_EQ] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_match] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_transform] = ACTIONS(2006), - [anon_sym_filter] = ACTIONS(2006), - [anon_sym_find] = ACTIONS(2006), - [anon_sym_remove] = ACTIONS(2006), - [anon_sym_reduce] = ACTIONS(2006), - [anon_sym_select] = ACTIONS(2006), - [anon_sym_insert] = ACTIONS(2006), - [anon_sym_async] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_table] = ACTIONS(2006), - [anon_sym_assert] = ACTIONS(2006), - [anon_sym_assert_equal] = ACTIONS(2006), - [anon_sym_download] = ACTIONS(2006), - [anon_sym_help] = ACTIONS(2006), - [anon_sym_length] = ACTIONS(2006), - [anon_sym_output] = ACTIONS(2006), - [anon_sym_output_error] = ACTIONS(2006), - [anon_sym_type] = ACTIONS(2006), - [anon_sym_append] = ACTIONS(2006), - [anon_sym_metadata] = ACTIONS(2006), - [anon_sym_move] = ACTIONS(2006), - [anon_sym_read] = ACTIONS(2006), - [anon_sym_workdir] = ACTIONS(2006), - [anon_sym_write] = ACTIONS(2006), - [anon_sym_from_json] = ACTIONS(2006), - [anon_sym_to_json] = ACTIONS(2006), - [anon_sym_to_string] = ACTIONS(2006), - [anon_sym_to_float] = ACTIONS(2006), - [anon_sym_bash] = ACTIONS(2006), - [anon_sym_fish] = ACTIONS(2006), - [anon_sym_raw] = ACTIONS(2006), - [anon_sym_sh] = ACTIONS(2006), - [anon_sym_zsh] = ACTIONS(2006), - [anon_sym_random] = ACTIONS(2006), - [anon_sym_random_boolean] = ACTIONS(2006), - [anon_sym_random_float] = ACTIONS(2006), - [anon_sym_random_integer] = ACTIONS(2006), - [anon_sym_columns] = ACTIONS(2006), - [anon_sym_rows] = ACTIONS(2006), - [anon_sym_reverse] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [sym_integer] = ACTIONS(2010), - [sym_float] = ACTIONS(2008), - [sym_string] = ACTIONS(2008), - [anon_sym_true] = ACTIONS(2010), - [anon_sym_false] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2008), - [anon_sym_COLON] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PERCENT] = ACTIONS(2008), - [anon_sym_EQ_EQ] = ACTIONS(2008), - [anon_sym_BANG_EQ] = ACTIONS(2008), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_PIPE_PIPE] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_GT_EQ] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_match] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_transform] = ACTIONS(2010), - [anon_sym_filter] = ACTIONS(2010), - [anon_sym_find] = ACTIONS(2010), - [anon_sym_remove] = ACTIONS(2010), - [anon_sym_reduce] = ACTIONS(2010), - [anon_sym_select] = ACTIONS(2010), - [anon_sym_insert] = ACTIONS(2010), - [anon_sym_async] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_table] = ACTIONS(2010), - [anon_sym_assert] = ACTIONS(2010), - [anon_sym_assert_equal] = ACTIONS(2010), - [anon_sym_download] = ACTIONS(2010), - [anon_sym_help] = ACTIONS(2010), - [anon_sym_length] = ACTIONS(2010), - [anon_sym_output] = ACTIONS(2010), - [anon_sym_output_error] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2010), - [anon_sym_append] = ACTIONS(2010), - [anon_sym_metadata] = ACTIONS(2010), - [anon_sym_move] = ACTIONS(2010), - [anon_sym_read] = ACTIONS(2010), - [anon_sym_workdir] = ACTIONS(2010), - [anon_sym_write] = ACTIONS(2010), - [anon_sym_from_json] = ACTIONS(2010), - [anon_sym_to_json] = ACTIONS(2010), - [anon_sym_to_string] = ACTIONS(2010), - [anon_sym_to_float] = ACTIONS(2010), - [anon_sym_bash] = ACTIONS(2010), - [anon_sym_fish] = ACTIONS(2010), - [anon_sym_raw] = ACTIONS(2010), - [anon_sym_sh] = ACTIONS(2010), - [anon_sym_zsh] = ACTIONS(2010), - [anon_sym_random] = ACTIONS(2010), - [anon_sym_random_boolean] = ACTIONS(2010), - [anon_sym_random_float] = ACTIONS(2010), - [anon_sym_random_integer] = ACTIONS(2010), - [anon_sym_columns] = ACTIONS(2010), - [anon_sym_rows] = ACTIONS(2010), - [anon_sym_reverse] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2012), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_COMMA] = ACTIONS(2012), - [sym_integer] = ACTIONS(2014), - [sym_float] = ACTIONS(2012), - [sym_string] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2014), - [anon_sym_false] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_COLON] = ACTIONS(2012), - [anon_sym_DOT_DOT] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2012), - [anon_sym_BANG_EQ] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2012), - [anon_sym_PIPE_PIPE] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_GT_EQ] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_match] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_transform] = ACTIONS(2014), - [anon_sym_filter] = ACTIONS(2014), - [anon_sym_find] = ACTIONS(2014), - [anon_sym_remove] = ACTIONS(2014), - [anon_sym_reduce] = ACTIONS(2014), - [anon_sym_select] = ACTIONS(2014), - [anon_sym_insert] = ACTIONS(2014), - [anon_sym_async] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_table] = ACTIONS(2014), - [anon_sym_assert] = ACTIONS(2014), - [anon_sym_assert_equal] = ACTIONS(2014), - [anon_sym_download] = ACTIONS(2014), - [anon_sym_help] = ACTIONS(2014), - [anon_sym_length] = ACTIONS(2014), - [anon_sym_output] = ACTIONS(2014), - [anon_sym_output_error] = ACTIONS(2014), - [anon_sym_type] = ACTIONS(2014), - [anon_sym_append] = ACTIONS(2014), - [anon_sym_metadata] = ACTIONS(2014), - [anon_sym_move] = ACTIONS(2014), - [anon_sym_read] = ACTIONS(2014), - [anon_sym_workdir] = ACTIONS(2014), - [anon_sym_write] = ACTIONS(2014), - [anon_sym_from_json] = ACTIONS(2014), - [anon_sym_to_json] = ACTIONS(2014), - [anon_sym_to_string] = ACTIONS(2014), - [anon_sym_to_float] = ACTIONS(2014), - [anon_sym_bash] = ACTIONS(2014), - [anon_sym_fish] = ACTIONS(2014), - [anon_sym_raw] = ACTIONS(2014), - [anon_sym_sh] = ACTIONS(2014), - [anon_sym_zsh] = ACTIONS(2014), - [anon_sym_random] = ACTIONS(2014), - [anon_sym_random_boolean] = ACTIONS(2014), - [anon_sym_random_float] = ACTIONS(2014), - [anon_sym_random_integer] = ACTIONS(2014), - [anon_sym_columns] = ACTIONS(2014), - [anon_sym_rows] = ACTIONS(2014), - [anon_sym_reverse] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1369), + [sym_string] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_transform] = ACTIONS(1371), + [anon_sym_filter] = ACTIONS(1371), + [anon_sym_find] = ACTIONS(1371), + [anon_sym_remove] = ACTIONS(1371), + [anon_sym_reduce] = ACTIONS(1371), + [anon_sym_select] = ACTIONS(1371), + [anon_sym_insert] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_table] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_assert_equal] = ACTIONS(1371), + [anon_sym_download] = ACTIONS(1371), + [anon_sym_help] = ACTIONS(1371), + [anon_sym_length] = ACTIONS(1371), + [anon_sym_output] = ACTIONS(1371), + [anon_sym_output_error] = ACTIONS(1371), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_append] = ACTIONS(1371), + [anon_sym_metadata] = ACTIONS(1371), + [anon_sym_move] = ACTIONS(1371), + [anon_sym_read] = ACTIONS(1371), + [anon_sym_workdir] = ACTIONS(1371), + [anon_sym_write] = ACTIONS(1371), + [anon_sym_from_json] = ACTIONS(1371), + [anon_sym_to_json] = ACTIONS(1371), + [anon_sym_to_string] = ACTIONS(1371), + [anon_sym_to_float] = ACTIONS(1371), + [anon_sym_bash] = ACTIONS(1371), + [anon_sym_fish] = ACTIONS(1371), + [anon_sym_raw] = ACTIONS(1371), + [anon_sym_sh] = ACTIONS(1371), + [anon_sym_zsh] = ACTIONS(1371), + [anon_sym_random] = ACTIONS(1371), + [anon_sym_random_boolean] = ACTIONS(1371), + [anon_sym_random_float] = ACTIONS(1371), + [anon_sym_random_integer] = ACTIONS(1371), + [anon_sym_columns] = ACTIONS(1371), + [anon_sym_rows] = ACTIONS(1371), + [anon_sym_reverse] = ACTIONS(1371), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2016), - [sym_integer] = ACTIONS(2018), - [sym_float] = ACTIONS(2016), - [sym_string] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_COLON] = ACTIONS(2016), - [anon_sym_DOT_DOT] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_GT] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_transform] = ACTIONS(2018), - [anon_sym_filter] = ACTIONS(2018), - [anon_sym_find] = ACTIONS(2018), - [anon_sym_remove] = ACTIONS(2018), - [anon_sym_reduce] = ACTIONS(2018), - [anon_sym_select] = ACTIONS(2018), - [anon_sym_insert] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_table] = ACTIONS(2018), - [anon_sym_assert] = ACTIONS(2018), - [anon_sym_assert_equal] = ACTIONS(2018), - [anon_sym_download] = ACTIONS(2018), - [anon_sym_help] = ACTIONS(2018), - [anon_sym_length] = ACTIONS(2018), - [anon_sym_output] = ACTIONS(2018), - [anon_sym_output_error] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_append] = ACTIONS(2018), - [anon_sym_metadata] = ACTIONS(2018), - [anon_sym_move] = ACTIONS(2018), - [anon_sym_read] = ACTIONS(2018), - [anon_sym_workdir] = ACTIONS(2018), - [anon_sym_write] = ACTIONS(2018), - [anon_sym_from_json] = ACTIONS(2018), - [anon_sym_to_json] = ACTIONS(2018), - [anon_sym_to_string] = ACTIONS(2018), - [anon_sym_to_float] = ACTIONS(2018), - [anon_sym_bash] = ACTIONS(2018), - [anon_sym_fish] = ACTIONS(2018), - [anon_sym_raw] = ACTIONS(2018), - [anon_sym_sh] = ACTIONS(2018), - [anon_sym_zsh] = ACTIONS(2018), - [anon_sym_random] = ACTIONS(2018), - [anon_sym_random_boolean] = ACTIONS(2018), - [anon_sym_random_float] = ACTIONS(2018), - [anon_sym_random_integer] = ACTIONS(2018), - [anon_sym_columns] = ACTIONS(2018), - [anon_sym_rows] = ACTIONS(2018), - [anon_sym_reverse] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [sym_integer] = ACTIONS(1412), + [sym_float] = ACTIONS(1410), + [sym_string] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_EQ_EQ] = ACTIONS(1410), + [anon_sym_BANG_EQ] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT_EQ] = ACTIONS(1410), + [anon_sym_LT_EQ] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_EQ_GT] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_transform] = ACTIONS(1412), + [anon_sym_filter] = ACTIONS(1412), + [anon_sym_find] = ACTIONS(1412), + [anon_sym_remove] = ACTIONS(1412), + [anon_sym_reduce] = ACTIONS(1412), + [anon_sym_select] = ACTIONS(1412), + [anon_sym_insert] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_table] = ACTIONS(1412), + [anon_sym_assert] = ACTIONS(1412), + [anon_sym_assert_equal] = ACTIONS(1412), + [anon_sym_download] = ACTIONS(1412), + [anon_sym_help] = ACTIONS(1412), + [anon_sym_length] = ACTIONS(1412), + [anon_sym_output] = ACTIONS(1412), + [anon_sym_output_error] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_append] = ACTIONS(1412), + [anon_sym_metadata] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1412), + [anon_sym_read] = ACTIONS(1412), + [anon_sym_workdir] = ACTIONS(1412), + [anon_sym_write] = ACTIONS(1412), + [anon_sym_from_json] = ACTIONS(1412), + [anon_sym_to_json] = ACTIONS(1412), + [anon_sym_to_string] = ACTIONS(1412), + [anon_sym_to_float] = ACTIONS(1412), + [anon_sym_bash] = ACTIONS(1412), + [anon_sym_fish] = ACTIONS(1412), + [anon_sym_raw] = ACTIONS(1412), + [anon_sym_sh] = ACTIONS(1412), + [anon_sym_zsh] = ACTIONS(1412), + [anon_sym_random] = ACTIONS(1412), + [anon_sym_random_boolean] = ACTIONS(1412), + [anon_sym_random_float] = ACTIONS(1412), + [anon_sym_random_integer] = ACTIONS(1412), + [anon_sym_columns] = ACTIONS(1412), + [anon_sym_rows] = ACTIONS(1412), + [anon_sym_reverse] = ACTIONS(1412), }, [462] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(494), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(958), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), [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_COLON] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(820), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2023), - [sym_string] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_RBRACK] = ACTIONS(2023), - [anon_sym_COLON] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_EQ_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_GT_EQ] = ACTIONS(2023), - [anon_sym_LT_EQ] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_EQ_GT] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_transform] = ACTIONS(2025), - [anon_sym_filter] = ACTIONS(2025), - [anon_sym_find] = ACTIONS(2025), - [anon_sym_remove] = ACTIONS(2025), - [anon_sym_reduce] = ACTIONS(2025), - [anon_sym_select] = ACTIONS(2025), - [anon_sym_insert] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_table] = ACTIONS(2025), - [anon_sym_assert] = ACTIONS(2025), - [anon_sym_assert_equal] = ACTIONS(2025), - [anon_sym_download] = ACTIONS(2025), - [anon_sym_help] = ACTIONS(2025), - [anon_sym_length] = ACTIONS(2025), - [anon_sym_output] = ACTIONS(2025), - [anon_sym_output_error] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_append] = ACTIONS(2025), - [anon_sym_metadata] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_read] = ACTIONS(2025), - [anon_sym_workdir] = ACTIONS(2025), - [anon_sym_write] = ACTIONS(2025), - [anon_sym_from_json] = ACTIONS(2025), - [anon_sym_to_json] = ACTIONS(2025), - [anon_sym_to_string] = ACTIONS(2025), - [anon_sym_to_float] = ACTIONS(2025), - [anon_sym_bash] = ACTIONS(2025), - [anon_sym_fish] = ACTIONS(2025), - [anon_sym_raw] = ACTIONS(2025), - [anon_sym_sh] = ACTIONS(2025), - [anon_sym_zsh] = ACTIONS(2025), - [anon_sym_random] = ACTIONS(2025), - [anon_sym_random_boolean] = ACTIONS(2025), - [anon_sym_random_float] = ACTIONS(2025), - [anon_sym_random_integer] = ACTIONS(2025), - [anon_sym_columns] = ACTIONS(2025), - [anon_sym_rows] = ACTIONS(2025), - [anon_sym_reverse] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1290), + [anon_sym_COMMA] = ACTIONS(1465), + [sym_integer] = ACTIONS(1292), + [sym_float] = ACTIONS(1290), + [sym_string] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_EQ_GT] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_transform] = ACTIONS(1292), + [anon_sym_filter] = ACTIONS(1292), + [anon_sym_find] = ACTIONS(1292), + [anon_sym_remove] = ACTIONS(1292), + [anon_sym_reduce] = ACTIONS(1292), + [anon_sym_select] = ACTIONS(1292), + [anon_sym_insert] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_table] = ACTIONS(1292), + [anon_sym_assert] = ACTIONS(1292), + [anon_sym_assert_equal] = ACTIONS(1292), + [anon_sym_download] = ACTIONS(1292), + [anon_sym_help] = ACTIONS(1292), + [anon_sym_length] = ACTIONS(1292), + [anon_sym_output] = ACTIONS(1292), + [anon_sym_output_error] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_append] = ACTIONS(1292), + [anon_sym_metadata] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [anon_sym_read] = ACTIONS(1292), + [anon_sym_workdir] = ACTIONS(1292), + [anon_sym_write] = ACTIONS(1292), + [anon_sym_from_json] = ACTIONS(1292), + [anon_sym_to_json] = ACTIONS(1292), + [anon_sym_to_string] = ACTIONS(1292), + [anon_sym_to_float] = ACTIONS(1292), + [anon_sym_bash] = ACTIONS(1292), + [anon_sym_fish] = ACTIONS(1292), + [anon_sym_raw] = ACTIONS(1292), + [anon_sym_sh] = ACTIONS(1292), + [anon_sym_zsh] = ACTIONS(1292), + [anon_sym_random] = ACTIONS(1292), + [anon_sym_random_boolean] = ACTIONS(1292), + [anon_sym_random_float] = ACTIONS(1292), + [anon_sym_random_integer] = ACTIONS(1292), + [anon_sym_columns] = ACTIONS(1292), + [anon_sym_rows] = ACTIONS(1292), + [anon_sym_reverse] = ACTIONS(1292), }, [464] = { - [sym_expression] = STATE(973), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(230), - [sym_identifier] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1406), + [sym_string] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_EQ_EQ] = ACTIONS(1406), + [anon_sym_BANG_EQ] = ACTIONS(1406), + [anon_sym_AMP_AMP] = ACTIONS(1406), + [anon_sym_PIPE_PIPE] = ACTIONS(1406), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT_EQ] = ACTIONS(1406), + [anon_sym_LT_EQ] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_EQ_GT] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_transform] = ACTIONS(1408), + [anon_sym_filter] = ACTIONS(1408), + [anon_sym_find] = ACTIONS(1408), + [anon_sym_remove] = ACTIONS(1408), + [anon_sym_reduce] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1408), + [anon_sym_insert] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_table] = ACTIONS(1408), + [anon_sym_assert] = ACTIONS(1408), + [anon_sym_assert_equal] = ACTIONS(1408), + [anon_sym_download] = ACTIONS(1408), + [anon_sym_help] = ACTIONS(1408), + [anon_sym_length] = ACTIONS(1408), + [anon_sym_output] = ACTIONS(1408), + [anon_sym_output_error] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_append] = ACTIONS(1408), + [anon_sym_metadata] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1408), + [anon_sym_read] = ACTIONS(1408), + [anon_sym_workdir] = ACTIONS(1408), + [anon_sym_write] = ACTIONS(1408), + [anon_sym_from_json] = ACTIONS(1408), + [anon_sym_to_json] = ACTIONS(1408), + [anon_sym_to_string] = ACTIONS(1408), + [anon_sym_to_float] = ACTIONS(1408), + [anon_sym_bash] = ACTIONS(1408), + [anon_sym_fish] = ACTIONS(1408), + [anon_sym_raw] = ACTIONS(1408), + [anon_sym_sh] = ACTIONS(1408), + [anon_sym_zsh] = ACTIONS(1408), + [anon_sym_random] = ACTIONS(1408), + [anon_sym_random_boolean] = ACTIONS(1408), + [anon_sym_random_float] = ACTIONS(1408), + [anon_sym_random_integer] = ACTIONS(1408), + [anon_sym_columns] = ACTIONS(1408), + [anon_sym_rows] = ACTIONS(1408), + [anon_sym_reverse] = ACTIONS(1408), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_COMMA] = ACTIONS(2027), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2027), - [sym_string] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_RBRACK] = ACTIONS(2027), - [anon_sym_COLON] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_PERCENT] = ACTIONS(2027), - [anon_sym_EQ_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2027), - [anon_sym_LT_EQ] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_EQ_GT] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_transform] = ACTIONS(2029), - [anon_sym_filter] = ACTIONS(2029), - [anon_sym_find] = ACTIONS(2029), - [anon_sym_remove] = ACTIONS(2029), - [anon_sym_reduce] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_insert] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_table] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_assert_equal] = ACTIONS(2029), - [anon_sym_download] = ACTIONS(2029), - [anon_sym_help] = ACTIONS(2029), - [anon_sym_length] = ACTIONS(2029), - [anon_sym_output] = ACTIONS(2029), - [anon_sym_output_error] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_append] = ACTIONS(2029), - [anon_sym_metadata] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_read] = ACTIONS(2029), - [anon_sym_workdir] = ACTIONS(2029), - [anon_sym_write] = ACTIONS(2029), - [anon_sym_from_json] = ACTIONS(2029), - [anon_sym_to_json] = ACTIONS(2029), - [anon_sym_to_string] = ACTIONS(2029), - [anon_sym_to_float] = ACTIONS(2029), - [anon_sym_bash] = ACTIONS(2029), - [anon_sym_fish] = ACTIONS(2029), - [anon_sym_raw] = ACTIONS(2029), - [anon_sym_sh] = ACTIONS(2029), - [anon_sym_zsh] = ACTIONS(2029), - [anon_sym_random] = ACTIONS(2029), - [anon_sym_random_boolean] = ACTIONS(2029), - [anon_sym_random_float] = ACTIONS(2029), - [anon_sym_random_integer] = ACTIONS(2029), - [anon_sym_columns] = ACTIONS(2029), - [anon_sym_rows] = ACTIONS(2029), - [anon_sym_reverse] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [sym_integer] = ACTIONS(1420), + [sym_float] = ACTIONS(1418), + [sym_string] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_RBRACK] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_EQ_GT] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_transform] = ACTIONS(1420), + [anon_sym_filter] = ACTIONS(1420), + [anon_sym_find] = ACTIONS(1420), + [anon_sym_remove] = ACTIONS(1420), + [anon_sym_reduce] = ACTIONS(1420), + [anon_sym_select] = ACTIONS(1420), + [anon_sym_insert] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_table] = ACTIONS(1420), + [anon_sym_assert] = ACTIONS(1420), + [anon_sym_assert_equal] = ACTIONS(1420), + [anon_sym_download] = ACTIONS(1420), + [anon_sym_help] = ACTIONS(1420), + [anon_sym_length] = ACTIONS(1420), + [anon_sym_output] = ACTIONS(1420), + [anon_sym_output_error] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_append] = ACTIONS(1420), + [anon_sym_metadata] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [anon_sym_read] = ACTIONS(1420), + [anon_sym_workdir] = ACTIONS(1420), + [anon_sym_write] = ACTIONS(1420), + [anon_sym_from_json] = ACTIONS(1420), + [anon_sym_to_json] = ACTIONS(1420), + [anon_sym_to_string] = ACTIONS(1420), + [anon_sym_to_float] = ACTIONS(1420), + [anon_sym_bash] = ACTIONS(1420), + [anon_sym_fish] = ACTIONS(1420), + [anon_sym_raw] = ACTIONS(1420), + [anon_sym_sh] = ACTIONS(1420), + [anon_sym_zsh] = ACTIONS(1420), + [anon_sym_random] = ACTIONS(1420), + [anon_sym_random_boolean] = ACTIONS(1420), + [anon_sym_random_float] = ACTIONS(1420), + [anon_sym_random_integer] = ACTIONS(1420), + [anon_sym_columns] = ACTIONS(1420), + [anon_sym_rows] = ACTIONS(1420), + [anon_sym_reverse] = ACTIONS(1420), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [sym_integer] = ACTIONS(2070), - [sym_float] = ACTIONS(2068), - [sym_string] = ACTIONS(2068), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2068), - [anon_sym_PIPE_PIPE] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_transform] = ACTIONS(2070), - [anon_sym_filter] = ACTIONS(2070), - [anon_sym_find] = ACTIONS(2070), - [anon_sym_remove] = ACTIONS(2070), - [anon_sym_reduce] = ACTIONS(2070), - [anon_sym_select] = ACTIONS(2070), - [anon_sym_insert] = ACTIONS(2070), - [anon_sym_async] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_table] = ACTIONS(2070), - [anon_sym_assert] = ACTIONS(2070), - [anon_sym_assert_equal] = ACTIONS(2070), - [anon_sym_download] = ACTIONS(2070), - [anon_sym_help] = ACTIONS(2070), - [anon_sym_length] = ACTIONS(2070), - [anon_sym_output] = ACTIONS(2070), - [anon_sym_output_error] = ACTIONS(2070), - [anon_sym_type] = ACTIONS(2070), - [anon_sym_append] = ACTIONS(2070), - [anon_sym_metadata] = ACTIONS(2070), - [anon_sym_move] = ACTIONS(2070), - [anon_sym_read] = ACTIONS(2070), - [anon_sym_workdir] = ACTIONS(2070), - [anon_sym_write] = ACTIONS(2070), - [anon_sym_from_json] = ACTIONS(2070), - [anon_sym_to_json] = ACTIONS(2070), - [anon_sym_to_string] = ACTIONS(2070), - [anon_sym_to_float] = ACTIONS(2070), - [anon_sym_bash] = ACTIONS(2070), - [anon_sym_fish] = ACTIONS(2070), - [anon_sym_raw] = ACTIONS(2070), - [anon_sym_sh] = ACTIONS(2070), - [anon_sym_zsh] = ACTIONS(2070), - [anon_sym_random] = ACTIONS(2070), - [anon_sym_random_boolean] = ACTIONS(2070), - [anon_sym_random_float] = ACTIONS(2070), - [anon_sym_random_integer] = ACTIONS(2070), - [anon_sym_columns] = ACTIONS(2070), - [anon_sym_rows] = ACTIONS(2070), - [anon_sym_reverse] = ACTIONS(2070), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_COMMA] = ACTIONS(2034), - [sym_integer] = ACTIONS(2036), - [sym_float] = ACTIONS(2034), - [sym_string] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_COLON] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_transform] = ACTIONS(2036), - [anon_sym_filter] = ACTIONS(2036), - [anon_sym_find] = ACTIONS(2036), - [anon_sym_remove] = ACTIONS(2036), - [anon_sym_reduce] = ACTIONS(2036), - [anon_sym_select] = ACTIONS(2036), - [anon_sym_insert] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_table] = ACTIONS(2036), - [anon_sym_assert] = ACTIONS(2036), - [anon_sym_assert_equal] = ACTIONS(2036), - [anon_sym_download] = ACTIONS(2036), - [anon_sym_help] = ACTIONS(2036), - [anon_sym_length] = ACTIONS(2036), - [anon_sym_output] = ACTIONS(2036), - [anon_sym_output_error] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_append] = ACTIONS(2036), - [anon_sym_metadata] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [anon_sym_read] = ACTIONS(2036), - [anon_sym_workdir] = ACTIONS(2036), - [anon_sym_write] = ACTIONS(2036), - [anon_sym_from_json] = ACTIONS(2036), - [anon_sym_to_json] = ACTIONS(2036), - [anon_sym_to_string] = ACTIONS(2036), - [anon_sym_to_float] = ACTIONS(2036), - [anon_sym_bash] = ACTIONS(2036), - [anon_sym_fish] = ACTIONS(2036), - [anon_sym_raw] = ACTIONS(2036), - [anon_sym_sh] = ACTIONS(2036), - [anon_sym_zsh] = ACTIONS(2036), - [anon_sym_random] = ACTIONS(2036), - [anon_sym_random_boolean] = ACTIONS(2036), - [anon_sym_random_float] = ACTIONS(2036), - [anon_sym_random_integer] = ACTIONS(2036), - [anon_sym_columns] = ACTIONS(2036), - [anon_sym_rows] = ACTIONS(2036), - [anon_sym_reverse] = ACTIONS(2036), - }, - [468] = { - [sym_expression] = STATE(960), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_COMMA] = ACTIONS(2048), - [sym_integer] = ACTIONS(2050), - [sym_float] = ACTIONS(2048), - [sym_string] = ACTIONS(2048), - [anon_sym_true] = ACTIONS(2050), - [anon_sym_false] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_transform] = ACTIONS(2050), - [anon_sym_filter] = ACTIONS(2050), - [anon_sym_find] = ACTIONS(2050), - [anon_sym_remove] = ACTIONS(2050), - [anon_sym_reduce] = ACTIONS(2050), - [anon_sym_select] = ACTIONS(2050), - [anon_sym_insert] = ACTIONS(2050), - [anon_sym_async] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_table] = ACTIONS(2050), - [anon_sym_assert] = ACTIONS(2050), - [anon_sym_assert_equal] = ACTIONS(2050), - [anon_sym_download] = ACTIONS(2050), - [anon_sym_help] = ACTIONS(2050), - [anon_sym_length] = ACTIONS(2050), - [anon_sym_output] = ACTIONS(2050), - [anon_sym_output_error] = ACTIONS(2050), - [anon_sym_type] = ACTIONS(2050), - [anon_sym_append] = ACTIONS(2050), - [anon_sym_metadata] = ACTIONS(2050), - [anon_sym_move] = ACTIONS(2050), - [anon_sym_read] = ACTIONS(2050), - [anon_sym_workdir] = ACTIONS(2050), - [anon_sym_write] = ACTIONS(2050), - [anon_sym_from_json] = ACTIONS(2050), - [anon_sym_to_json] = ACTIONS(2050), - [anon_sym_to_string] = ACTIONS(2050), - [anon_sym_to_float] = ACTIONS(2050), - [anon_sym_bash] = ACTIONS(2050), - [anon_sym_fish] = ACTIONS(2050), - [anon_sym_raw] = ACTIONS(2050), - [anon_sym_sh] = ACTIONS(2050), - [anon_sym_zsh] = ACTIONS(2050), - [anon_sym_random] = ACTIONS(2050), - [anon_sym_random_boolean] = ACTIONS(2050), - [anon_sym_random_float] = ACTIONS(2050), - [anon_sym_random_integer] = ACTIONS(2050), - [anon_sym_columns] = ACTIONS(2050), - [anon_sym_rows] = ACTIONS(2050), - [anon_sym_reverse] = ACTIONS(2050), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_COMMA] = ACTIONS(2040), - [sym_integer] = ACTIONS(2042), - [sym_float] = ACTIONS(2040), - [sym_string] = ACTIONS(2040), - [anon_sym_true] = ACTIONS(2042), - [anon_sym_false] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2040), - [anon_sym_PIPE_PIPE] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_GT_EQ] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_transform] = ACTIONS(2042), - [anon_sym_filter] = ACTIONS(2042), - [anon_sym_find] = ACTIONS(2042), - [anon_sym_remove] = ACTIONS(2042), - [anon_sym_reduce] = ACTIONS(2042), - [anon_sym_select] = ACTIONS(2042), - [anon_sym_insert] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_PIPE] = ACTIONS(2042), - [anon_sym_table] = ACTIONS(2042), - [anon_sym_assert] = ACTIONS(2042), - [anon_sym_assert_equal] = ACTIONS(2042), - [anon_sym_download] = ACTIONS(2042), - [anon_sym_help] = ACTIONS(2042), - [anon_sym_length] = ACTIONS(2042), - [anon_sym_output] = ACTIONS(2042), - [anon_sym_output_error] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_append] = ACTIONS(2042), - [anon_sym_metadata] = ACTIONS(2042), - [anon_sym_move] = ACTIONS(2042), - [anon_sym_read] = ACTIONS(2042), - [anon_sym_workdir] = ACTIONS(2042), - [anon_sym_write] = ACTIONS(2042), - [anon_sym_from_json] = ACTIONS(2042), - [anon_sym_to_json] = ACTIONS(2042), - [anon_sym_to_string] = ACTIONS(2042), - [anon_sym_to_float] = ACTIONS(2042), - [anon_sym_bash] = ACTIONS(2042), - [anon_sym_fish] = ACTIONS(2042), - [anon_sym_raw] = ACTIONS(2042), - [anon_sym_sh] = ACTIONS(2042), - [anon_sym_zsh] = ACTIONS(2042), - [anon_sym_random] = ACTIONS(2042), - [anon_sym_random_boolean] = ACTIONS(2042), - [anon_sym_random_float] = ACTIONS(2042), - [anon_sym_random_integer] = ACTIONS(2042), - [anon_sym_columns] = ACTIONS(2042), - [anon_sym_rows] = ACTIONS(2042), - [anon_sym_reverse] = ACTIONS(2042), - }, - [471] = { - [sym_expression] = STATE(958), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [sym_integer] = ACTIONS(2054), - [sym_float] = ACTIONS(2052), - [sym_string] = ACTIONS(2052), - [anon_sym_true] = ACTIONS(2054), - [anon_sym_false] = ACTIONS(2054), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_RBRACK] = ACTIONS(2052), - [anon_sym_COLON] = ACTIONS(2052), - [anon_sym_DOT_DOT] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2052), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_match] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_transform] = ACTIONS(2054), - [anon_sym_filter] = ACTIONS(2054), - [anon_sym_find] = ACTIONS(2054), - [anon_sym_remove] = ACTIONS(2054), - [anon_sym_reduce] = ACTIONS(2054), - [anon_sym_select] = ACTIONS(2054), - [anon_sym_insert] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_PIPE] = ACTIONS(2054), - [anon_sym_table] = ACTIONS(2054), - [anon_sym_assert] = ACTIONS(2054), - [anon_sym_assert_equal] = ACTIONS(2054), - [anon_sym_download] = ACTIONS(2054), - [anon_sym_help] = ACTIONS(2054), - [anon_sym_length] = ACTIONS(2054), - [anon_sym_output] = ACTIONS(2054), - [anon_sym_output_error] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_append] = ACTIONS(2054), - [anon_sym_metadata] = ACTIONS(2054), - [anon_sym_move] = ACTIONS(2054), - [anon_sym_read] = ACTIONS(2054), - [anon_sym_workdir] = ACTIONS(2054), - [anon_sym_write] = ACTIONS(2054), - [anon_sym_from_json] = ACTIONS(2054), - [anon_sym_to_json] = ACTIONS(2054), - [anon_sym_to_string] = ACTIONS(2054), - [anon_sym_to_float] = ACTIONS(2054), - [anon_sym_bash] = ACTIONS(2054), - [anon_sym_fish] = ACTIONS(2054), - [anon_sym_raw] = ACTIONS(2054), - [anon_sym_sh] = ACTIONS(2054), - [anon_sym_zsh] = ACTIONS(2054), - [anon_sym_random] = ACTIONS(2054), - [anon_sym_random_boolean] = ACTIONS(2054), - [anon_sym_random_float] = ACTIONS(2054), - [anon_sym_random_integer] = ACTIONS(2054), - [anon_sym_columns] = ACTIONS(2054), - [anon_sym_rows] = ACTIONS(2054), - [anon_sym_reverse] = ACTIONS(2054), - }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [sym_integer] = ACTIONS(2074), - [sym_float] = ACTIONS(2072), - [sym_string] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_EQ_EQ] = ACTIONS(2072), - [anon_sym_BANG_EQ] = ACTIONS(2072), - [anon_sym_AMP_AMP] = ACTIONS(2072), - [anon_sym_PIPE_PIPE] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_transform] = ACTIONS(2074), - [anon_sym_filter] = ACTIONS(2074), - [anon_sym_find] = ACTIONS(2074), - [anon_sym_remove] = ACTIONS(2074), - [anon_sym_reduce] = ACTIONS(2074), - [anon_sym_select] = ACTIONS(2074), - [anon_sym_insert] = ACTIONS(2074), - [anon_sym_async] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_table] = ACTIONS(2074), - [anon_sym_assert] = ACTIONS(2074), - [anon_sym_assert_equal] = ACTIONS(2074), - [anon_sym_download] = ACTIONS(2074), - [anon_sym_help] = ACTIONS(2074), - [anon_sym_length] = ACTIONS(2074), - [anon_sym_output] = ACTIONS(2074), - [anon_sym_output_error] = ACTIONS(2074), - [anon_sym_type] = ACTIONS(2074), - [anon_sym_append] = ACTIONS(2074), - [anon_sym_metadata] = ACTIONS(2074), - [anon_sym_move] = ACTIONS(2074), - [anon_sym_read] = ACTIONS(2074), - [anon_sym_workdir] = ACTIONS(2074), - [anon_sym_write] = ACTIONS(2074), - [anon_sym_from_json] = ACTIONS(2074), - [anon_sym_to_json] = ACTIONS(2074), - [anon_sym_to_string] = ACTIONS(2074), - [anon_sym_to_float] = ACTIONS(2074), - [anon_sym_bash] = ACTIONS(2074), - [anon_sym_fish] = ACTIONS(2074), - [anon_sym_raw] = ACTIONS(2074), - [anon_sym_sh] = ACTIONS(2074), - [anon_sym_zsh] = ACTIONS(2074), - [anon_sym_random] = ACTIONS(2074), - [anon_sym_random_boolean] = ACTIONS(2074), - [anon_sym_random_float] = ACTIONS(2074), - [anon_sym_random_integer] = ACTIONS(2074), - [anon_sym_columns] = ACTIONS(2074), - [anon_sym_rows] = ACTIONS(2074), - [anon_sym_reverse] = ACTIONS(2074), - }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [sym_integer] = ACTIONS(2078), - [sym_float] = ACTIONS(2076), - [sym_string] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_RBRACK] = ACTIONS(2076), - [anon_sym_COLON] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_transform] = ACTIONS(2078), - [anon_sym_filter] = ACTIONS(2078), - [anon_sym_find] = ACTIONS(2078), - [anon_sym_remove] = ACTIONS(2078), - [anon_sym_reduce] = ACTIONS(2078), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_insert] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_table] = ACTIONS(2078), - [anon_sym_assert] = ACTIONS(2078), - [anon_sym_assert_equal] = ACTIONS(2078), - [anon_sym_download] = ACTIONS(2078), - [anon_sym_help] = ACTIONS(2078), - [anon_sym_length] = ACTIONS(2078), - [anon_sym_output] = ACTIONS(2078), - [anon_sym_output_error] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_append] = ACTIONS(2078), - [anon_sym_metadata] = ACTIONS(2078), - [anon_sym_move] = ACTIONS(2078), - [anon_sym_read] = ACTIONS(2078), - [anon_sym_workdir] = ACTIONS(2078), - [anon_sym_write] = ACTIONS(2078), - [anon_sym_from_json] = ACTIONS(2078), - [anon_sym_to_json] = ACTIONS(2078), - [anon_sym_to_string] = ACTIONS(2078), - [anon_sym_to_float] = ACTIONS(2078), - [anon_sym_bash] = ACTIONS(2078), - [anon_sym_fish] = ACTIONS(2078), - [anon_sym_raw] = ACTIONS(2078), - [anon_sym_sh] = ACTIONS(2078), - [anon_sym_zsh] = ACTIONS(2078), - [anon_sym_random] = ACTIONS(2078), - [anon_sym_random_boolean] = ACTIONS(2078), - [anon_sym_random_float] = ACTIONS(2078), - [anon_sym_random_integer] = ACTIONS(2078), - [anon_sym_columns] = ACTIONS(2078), - [anon_sym_rows] = ACTIONS(2078), - [anon_sym_reverse] = ACTIONS(2078), - }, - [475] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [sym_integer] = ACTIONS(2066), - [sym_float] = ACTIONS(2064), - [sym_string] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_EQ_EQ] = ACTIONS(2064), - [anon_sym_BANG_EQ] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT_EQ] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_transform] = ACTIONS(2066), - [anon_sym_filter] = ACTIONS(2066), - [anon_sym_find] = ACTIONS(2066), - [anon_sym_remove] = ACTIONS(2066), - [anon_sym_reduce] = ACTIONS(2066), - [anon_sym_select] = ACTIONS(2066), - [anon_sym_insert] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_table] = ACTIONS(2066), - [anon_sym_assert] = ACTIONS(2066), - [anon_sym_assert_equal] = ACTIONS(2066), - [anon_sym_download] = ACTIONS(2066), - [anon_sym_help] = ACTIONS(2066), - [anon_sym_length] = ACTIONS(2066), - [anon_sym_output] = ACTIONS(2066), - [anon_sym_output_error] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_append] = ACTIONS(2066), - [anon_sym_metadata] = ACTIONS(2066), - [anon_sym_move] = ACTIONS(2066), - [anon_sym_read] = ACTIONS(2066), - [anon_sym_workdir] = ACTIONS(2066), - [anon_sym_write] = ACTIONS(2066), - [anon_sym_from_json] = ACTIONS(2066), - [anon_sym_to_json] = ACTIONS(2066), - [anon_sym_to_string] = ACTIONS(2066), - [anon_sym_to_float] = ACTIONS(2066), - [anon_sym_bash] = ACTIONS(2066), - [anon_sym_fish] = ACTIONS(2066), - [anon_sym_raw] = ACTIONS(2066), - [anon_sym_sh] = ACTIONS(2066), - [anon_sym_zsh] = ACTIONS(2066), - [anon_sym_random] = ACTIONS(2066), - [anon_sym_random_boolean] = ACTIONS(2066), - [anon_sym_random_float] = ACTIONS(2066), - [anon_sym_random_integer] = ACTIONS(2066), - [anon_sym_columns] = ACTIONS(2066), - [anon_sym_rows] = ACTIONS(2066), - [anon_sym_reverse] = ACTIONS(2066), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [sym_integer] = ACTIONS(2114), - [sym_float] = ACTIONS(2112), - [sym_string] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2114), - [anon_sym_false] = ACTIONS(2114), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_match] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_transform] = ACTIONS(2114), - [anon_sym_filter] = ACTIONS(2114), - [anon_sym_find] = ACTIONS(2114), - [anon_sym_remove] = ACTIONS(2114), - [anon_sym_reduce] = ACTIONS(2114), - [anon_sym_select] = ACTIONS(2114), - [anon_sym_insert] = ACTIONS(2114), - [anon_sym_async] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_table] = ACTIONS(2114), - [anon_sym_assert] = ACTIONS(2114), - [anon_sym_assert_equal] = ACTIONS(2114), - [anon_sym_download] = ACTIONS(2114), - [anon_sym_help] = ACTIONS(2114), - [anon_sym_length] = ACTIONS(2114), - [anon_sym_output] = ACTIONS(2114), - [anon_sym_output_error] = ACTIONS(2114), - [anon_sym_type] = ACTIONS(2114), - [anon_sym_append] = ACTIONS(2114), - [anon_sym_metadata] = ACTIONS(2114), - [anon_sym_move] = ACTIONS(2114), - [anon_sym_read] = ACTIONS(2114), - [anon_sym_workdir] = ACTIONS(2114), - [anon_sym_write] = ACTIONS(2114), - [anon_sym_from_json] = ACTIONS(2114), - [anon_sym_to_json] = ACTIONS(2114), - [anon_sym_to_string] = ACTIONS(2114), - [anon_sym_to_float] = ACTIONS(2114), - [anon_sym_bash] = ACTIONS(2114), - [anon_sym_fish] = ACTIONS(2114), - [anon_sym_raw] = ACTIONS(2114), - [anon_sym_sh] = ACTIONS(2114), - [anon_sym_zsh] = ACTIONS(2114), - [anon_sym_random] = ACTIONS(2114), - [anon_sym_random_boolean] = ACTIONS(2114), - [anon_sym_random_float] = ACTIONS(2114), - [anon_sym_random_integer] = ACTIONS(2114), - [anon_sym_columns] = ACTIONS(2114), - [anon_sym_rows] = ACTIONS(2114), - [anon_sym_reverse] = ACTIONS(2114), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(2084), - [sym_integer] = ACTIONS(2086), - [sym_float] = ACTIONS(2084), - [sym_string] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2086), - [anon_sym_false] = ACTIONS(2086), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2084), - [anon_sym_BANG_EQ] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2084), - [anon_sym_PIPE_PIPE] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_GT_EQ] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_transform] = ACTIONS(2086), - [anon_sym_filter] = ACTIONS(2086), - [anon_sym_find] = ACTIONS(2086), - [anon_sym_remove] = ACTIONS(2086), - [anon_sym_reduce] = ACTIONS(2086), - [anon_sym_select] = ACTIONS(2086), - [anon_sym_insert] = ACTIONS(2086), - [anon_sym_async] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_table] = ACTIONS(2086), - [anon_sym_assert] = ACTIONS(2086), - [anon_sym_assert_equal] = ACTIONS(2086), - [anon_sym_download] = ACTIONS(2086), - [anon_sym_help] = ACTIONS(2086), - [anon_sym_length] = ACTIONS(2086), - [anon_sym_output] = ACTIONS(2086), - [anon_sym_output_error] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_append] = ACTIONS(2086), - [anon_sym_metadata] = ACTIONS(2086), - [anon_sym_move] = ACTIONS(2086), - [anon_sym_read] = ACTIONS(2086), - [anon_sym_workdir] = ACTIONS(2086), - [anon_sym_write] = ACTIONS(2086), - [anon_sym_from_json] = ACTIONS(2086), - [anon_sym_to_json] = ACTIONS(2086), - [anon_sym_to_string] = ACTIONS(2086), - [anon_sym_to_float] = ACTIONS(2086), - [anon_sym_bash] = ACTIONS(2086), - [anon_sym_fish] = ACTIONS(2086), - [anon_sym_raw] = ACTIONS(2086), - [anon_sym_sh] = ACTIONS(2086), - [anon_sym_zsh] = ACTIONS(2086), - [anon_sym_random] = ACTIONS(2086), - [anon_sym_random_boolean] = ACTIONS(2086), - [anon_sym_random_float] = ACTIONS(2086), - [anon_sym_random_integer] = ACTIONS(2086), - [anon_sym_columns] = ACTIONS(2086), - [anon_sym_rows] = ACTIONS(2086), - [anon_sym_reverse] = ACTIONS(2086), - }, - [478] = { - [sym_expression] = STATE(942), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(440), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [479] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2130), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_transform] = ACTIONS(1940), - [anon_sym_filter] = ACTIONS(1940), - [anon_sym_find] = ACTIONS(1940), - [anon_sym_remove] = ACTIONS(1940), - [anon_sym_reduce] = ACTIONS(1940), - [anon_sym_select] = ACTIONS(1940), - [anon_sym_insert] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_COMMA] = ACTIONS(2080), - [sym_integer] = ACTIONS(2082), - [sym_float] = ACTIONS(2080), - [sym_string] = ACTIONS(2080), - [anon_sym_true] = ACTIONS(2082), - [anon_sym_false] = ACTIONS(2082), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_RBRACK] = ACTIONS(2080), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_DOT_DOT] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2080), - [anon_sym_BANG_EQ] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(2080), - [anon_sym_PIPE_PIPE] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_GT_EQ] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_transform] = ACTIONS(2082), - [anon_sym_filter] = ACTIONS(2082), - [anon_sym_find] = ACTIONS(2082), - [anon_sym_remove] = ACTIONS(2082), - [anon_sym_reduce] = ACTIONS(2082), - [anon_sym_select] = ACTIONS(2082), - [anon_sym_insert] = ACTIONS(2082), - [anon_sym_async] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_table] = ACTIONS(2082), - [anon_sym_assert] = ACTIONS(2082), - [anon_sym_assert_equal] = ACTIONS(2082), - [anon_sym_download] = ACTIONS(2082), - [anon_sym_help] = ACTIONS(2082), - [anon_sym_length] = ACTIONS(2082), - [anon_sym_output] = ACTIONS(2082), - [anon_sym_output_error] = ACTIONS(2082), - [anon_sym_type] = ACTIONS(2082), - [anon_sym_append] = ACTIONS(2082), - [anon_sym_metadata] = ACTIONS(2082), - [anon_sym_move] = ACTIONS(2082), - [anon_sym_read] = ACTIONS(2082), - [anon_sym_workdir] = ACTIONS(2082), - [anon_sym_write] = ACTIONS(2082), - [anon_sym_from_json] = ACTIONS(2082), - [anon_sym_to_json] = ACTIONS(2082), - [anon_sym_to_string] = ACTIONS(2082), - [anon_sym_to_float] = ACTIONS(2082), - [anon_sym_bash] = ACTIONS(2082), - [anon_sym_fish] = ACTIONS(2082), - [anon_sym_raw] = ACTIONS(2082), - [anon_sym_sh] = ACTIONS(2082), - [anon_sym_zsh] = ACTIONS(2082), - [anon_sym_random] = ACTIONS(2082), - [anon_sym_random_boolean] = ACTIONS(2082), - [anon_sym_random_float] = ACTIONS(2082), - [anon_sym_random_integer] = ACTIONS(2082), - [anon_sym_columns] = ACTIONS(2082), - [anon_sym_rows] = ACTIONS(2082), - [anon_sym_reverse] = ACTIONS(2082), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [sym_integer] = ACTIONS(2062), - [sym_float] = ACTIONS(2060), - [sym_string] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2062), - [anon_sym_false] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_transform] = ACTIONS(2062), - [anon_sym_filter] = ACTIONS(2062), - [anon_sym_find] = ACTIONS(2062), - [anon_sym_remove] = ACTIONS(2062), - [anon_sym_reduce] = ACTIONS(2062), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_insert] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_table] = ACTIONS(2062), - [anon_sym_assert] = ACTIONS(2062), - [anon_sym_assert_equal] = ACTIONS(2062), - [anon_sym_download] = ACTIONS(2062), - [anon_sym_help] = ACTIONS(2062), - [anon_sym_length] = ACTIONS(2062), - [anon_sym_output] = ACTIONS(2062), - [anon_sym_output_error] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_append] = ACTIONS(2062), - [anon_sym_metadata] = ACTIONS(2062), - [anon_sym_move] = ACTIONS(2062), - [anon_sym_read] = ACTIONS(2062), - [anon_sym_workdir] = ACTIONS(2062), - [anon_sym_write] = ACTIONS(2062), - [anon_sym_from_json] = ACTIONS(2062), - [anon_sym_to_json] = ACTIONS(2062), - [anon_sym_to_string] = ACTIONS(2062), - [anon_sym_to_float] = ACTIONS(2062), - [anon_sym_bash] = ACTIONS(2062), - [anon_sym_fish] = ACTIONS(2062), - [anon_sym_raw] = ACTIONS(2062), - [anon_sym_sh] = ACTIONS(2062), - [anon_sym_zsh] = ACTIONS(2062), - [anon_sym_random] = ACTIONS(2062), - [anon_sym_random_boolean] = ACTIONS(2062), - [anon_sym_random_float] = ACTIONS(2062), - [anon_sym_random_integer] = ACTIONS(2062), - [anon_sym_columns] = ACTIONS(2062), - [anon_sym_rows] = ACTIONS(2062), - [anon_sym_reverse] = ACTIONS(2062), - }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_COMMA] = ACTIONS(2120), - [sym_integer] = ACTIONS(2122), - [sym_float] = ACTIONS(2120), - [sym_string] = ACTIONS(2120), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_COLON] = ACTIONS(2120), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_GT] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_transform] = ACTIONS(2122), - [anon_sym_filter] = ACTIONS(2122), - [anon_sym_find] = ACTIONS(2122), - [anon_sym_remove] = ACTIONS(2122), - [anon_sym_reduce] = ACTIONS(2122), - [anon_sym_select] = ACTIONS(2122), - [anon_sym_insert] = ACTIONS(2122), - [anon_sym_async] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_table] = ACTIONS(2122), - [anon_sym_assert] = ACTIONS(2122), - [anon_sym_assert_equal] = ACTIONS(2122), - [anon_sym_download] = ACTIONS(2122), - [anon_sym_help] = ACTIONS(2122), - [anon_sym_length] = ACTIONS(2122), - [anon_sym_output] = ACTIONS(2122), - [anon_sym_output_error] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_append] = ACTIONS(2122), - [anon_sym_metadata] = ACTIONS(2122), - [anon_sym_move] = ACTIONS(2122), - [anon_sym_read] = ACTIONS(2122), - [anon_sym_workdir] = ACTIONS(2122), - [anon_sym_write] = ACTIONS(2122), - [anon_sym_from_json] = ACTIONS(2122), - [anon_sym_to_json] = ACTIONS(2122), - [anon_sym_to_string] = ACTIONS(2122), - [anon_sym_to_float] = ACTIONS(2122), - [anon_sym_bash] = ACTIONS(2122), - [anon_sym_fish] = ACTIONS(2122), - [anon_sym_raw] = ACTIONS(2122), - [anon_sym_sh] = ACTIONS(2122), - [anon_sym_zsh] = ACTIONS(2122), - [anon_sym_random] = ACTIONS(2122), - [anon_sym_random_boolean] = ACTIONS(2122), - [anon_sym_random_float] = ACTIONS(2122), - [anon_sym_random_integer] = ACTIONS(2122), - [anon_sym_columns] = ACTIONS(2122), - [anon_sym_rows] = ACTIONS(2122), - [anon_sym_reverse] = ACTIONS(2122), - }, - [483] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_COMMA] = ACTIONS(1994), - [sym_integer] = ACTIONS(1996), - [sym_float] = ACTIONS(1994), - [sym_string] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_RBRACK] = ACTIONS(1994), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_transform] = ACTIONS(1996), - [anon_sym_filter] = ACTIONS(1996), - [anon_sym_find] = ACTIONS(1996), - [anon_sym_remove] = ACTIONS(1996), - [anon_sym_reduce] = ACTIONS(1996), - [anon_sym_select] = ACTIONS(1996), - [anon_sym_insert] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_table] = ACTIONS(1996), - [anon_sym_assert] = ACTIONS(1996), - [anon_sym_assert_equal] = ACTIONS(1996), - [anon_sym_download] = ACTIONS(1996), - [anon_sym_help] = ACTIONS(1996), - [anon_sym_length] = ACTIONS(1996), - [anon_sym_output] = ACTIONS(1996), - [anon_sym_output_error] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_append] = ACTIONS(1996), - [anon_sym_metadata] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [anon_sym_read] = ACTIONS(1996), - [anon_sym_workdir] = ACTIONS(1996), - [anon_sym_write] = ACTIONS(1996), - [anon_sym_from_json] = ACTIONS(1996), - [anon_sym_to_json] = ACTIONS(1996), - [anon_sym_to_string] = ACTIONS(1996), - [anon_sym_to_float] = ACTIONS(1996), - [anon_sym_bash] = ACTIONS(1996), - [anon_sym_fish] = ACTIONS(1996), - [anon_sym_raw] = ACTIONS(1996), - [anon_sym_sh] = ACTIONS(1996), - [anon_sym_zsh] = ACTIONS(1996), - [anon_sym_random] = ACTIONS(1996), - [anon_sym_random_boolean] = ACTIONS(1996), - [anon_sym_random_float] = ACTIONS(1996), - [anon_sym_random_integer] = ACTIONS(1996), - [anon_sym_columns] = ACTIONS(1996), - [anon_sym_rows] = ACTIONS(1996), - [anon_sym_reverse] = ACTIONS(1996), - }, - [485] = { - [sym_expression] = STATE(974), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2116), - [sym_integer] = ACTIONS(2118), - [sym_float] = ACTIONS(2116), - [sym_string] = ACTIONS(2116), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_COLON] = ACTIONS(2116), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2116), - [anon_sym_EQ_EQ] = ACTIONS(2116), - [anon_sym_BANG_EQ] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_GT_EQ] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_match] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_transform] = ACTIONS(2118), - [anon_sym_filter] = ACTIONS(2118), - [anon_sym_find] = ACTIONS(2118), - [anon_sym_remove] = ACTIONS(2118), - [anon_sym_reduce] = ACTIONS(2118), - [anon_sym_select] = ACTIONS(2118), - [anon_sym_insert] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_table] = ACTIONS(2118), - [anon_sym_assert] = ACTIONS(2118), - [anon_sym_assert_equal] = ACTIONS(2118), - [anon_sym_download] = ACTIONS(2118), - [anon_sym_help] = ACTIONS(2118), - [anon_sym_length] = ACTIONS(2118), - [anon_sym_output] = ACTIONS(2118), - [anon_sym_output_error] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_append] = ACTIONS(2118), - [anon_sym_metadata] = ACTIONS(2118), - [anon_sym_move] = ACTIONS(2118), - [anon_sym_read] = ACTIONS(2118), - [anon_sym_workdir] = ACTIONS(2118), - [anon_sym_write] = ACTIONS(2118), - [anon_sym_from_json] = ACTIONS(2118), - [anon_sym_to_json] = ACTIONS(2118), - [anon_sym_to_string] = ACTIONS(2118), - [anon_sym_to_float] = ACTIONS(2118), - [anon_sym_bash] = ACTIONS(2118), - [anon_sym_fish] = ACTIONS(2118), - [anon_sym_raw] = ACTIONS(2118), - [anon_sym_sh] = ACTIONS(2118), - [anon_sym_zsh] = ACTIONS(2118), - [anon_sym_random] = ACTIONS(2118), - [anon_sym_random_boolean] = ACTIONS(2118), - [anon_sym_random_float] = ACTIONS(2118), - [anon_sym_random_integer] = ACTIONS(2118), - [anon_sym_columns] = ACTIONS(2118), - [anon_sym_rows] = ACTIONS(2118), - [anon_sym_reverse] = ACTIONS(2118), - }, - [487] = { - [sym_expression] = STATE(968), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [488] = { - [sym_math_operator] = STATE(773), - [sym_logic_operator] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [489] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [sym_integer] = ACTIONS(2110), - [sym_float] = ACTIONS(2108), - [sym_string] = ACTIONS(2108), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_RBRACK] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2108), - [anon_sym_DOT_DOT] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PERCENT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_transform] = ACTIONS(2110), - [anon_sym_filter] = ACTIONS(2110), - [anon_sym_find] = ACTIONS(2110), - [anon_sym_remove] = ACTIONS(2110), - [anon_sym_reduce] = ACTIONS(2110), - [anon_sym_select] = ACTIONS(2110), - [anon_sym_insert] = ACTIONS(2110), - [anon_sym_async] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_table] = ACTIONS(2110), - [anon_sym_assert] = ACTIONS(2110), - [anon_sym_assert_equal] = ACTIONS(2110), - [anon_sym_download] = ACTIONS(2110), - [anon_sym_help] = ACTIONS(2110), - [anon_sym_length] = ACTIONS(2110), - [anon_sym_output] = ACTIONS(2110), - [anon_sym_output_error] = ACTIONS(2110), - [anon_sym_type] = ACTIONS(2110), - [anon_sym_append] = ACTIONS(2110), - [anon_sym_metadata] = ACTIONS(2110), - [anon_sym_move] = ACTIONS(2110), - [anon_sym_read] = ACTIONS(2110), - [anon_sym_workdir] = ACTIONS(2110), - [anon_sym_write] = ACTIONS(2110), - [anon_sym_from_json] = ACTIONS(2110), - [anon_sym_to_json] = ACTIONS(2110), - [anon_sym_to_string] = ACTIONS(2110), - [anon_sym_to_float] = ACTIONS(2110), - [anon_sym_bash] = ACTIONS(2110), - [anon_sym_fish] = ACTIONS(2110), - [anon_sym_raw] = ACTIONS(2110), - [anon_sym_sh] = ACTIONS(2110), - [anon_sym_zsh] = ACTIONS(2110), - [anon_sym_random] = ACTIONS(2110), - [anon_sym_random_boolean] = ACTIONS(2110), - [anon_sym_random_float] = ACTIONS(2110), - [anon_sym_random_integer] = ACTIONS(2110), - [anon_sym_columns] = ACTIONS(2110), - [anon_sym_rows] = ACTIONS(2110), - [anon_sym_reverse] = ACTIONS(2110), - }, - [490] = { - [sym_expression] = STATE(938), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(171), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [491] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_COMMA] = ACTIONS(1322), - [sym_integer] = ACTIONS(1345), - [sym_float] = ACTIONS(1322), - [sym_string] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1345), - [anon_sym_false] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_match] = ACTIONS(1345), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_transform] = ACTIONS(1345), - [anon_sym_filter] = ACTIONS(1345), - [anon_sym_find] = ACTIONS(1345), - [anon_sym_remove] = ACTIONS(1345), - [anon_sym_reduce] = ACTIONS(1345), - [anon_sym_select] = ACTIONS(1345), - [anon_sym_insert] = ACTIONS(1345), - [anon_sym_async] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_table] = ACTIONS(1345), - [anon_sym_assert] = ACTIONS(1345), - [anon_sym_assert_equal] = ACTIONS(1345), - [anon_sym_download] = ACTIONS(1345), - [anon_sym_help] = ACTIONS(1345), - [anon_sym_length] = ACTIONS(1345), - [anon_sym_output] = ACTIONS(1345), - [anon_sym_output_error] = ACTIONS(1345), - [anon_sym_type] = ACTIONS(1345), - [anon_sym_append] = ACTIONS(1345), - [anon_sym_metadata] = ACTIONS(1345), - [anon_sym_move] = ACTIONS(1345), - [anon_sym_read] = ACTIONS(1345), - [anon_sym_workdir] = ACTIONS(1345), - [anon_sym_write] = ACTIONS(1345), - [anon_sym_from_json] = ACTIONS(1345), - [anon_sym_to_json] = ACTIONS(1345), - [anon_sym_to_string] = ACTIONS(1345), - [anon_sym_to_float] = ACTIONS(1345), - [anon_sym_bash] = ACTIONS(1345), - [anon_sym_fish] = ACTIONS(1345), - [anon_sym_raw] = ACTIONS(1345), - [anon_sym_sh] = ACTIONS(1345), - [anon_sym_zsh] = ACTIONS(1345), - [anon_sym_random] = ACTIONS(1345), - [anon_sym_random_boolean] = ACTIONS(1345), - [anon_sym_random_float] = ACTIONS(1345), - [anon_sym_random_integer] = ACTIONS(1345), - [anon_sym_columns] = ACTIONS(1345), - [anon_sym_rows] = ACTIONS(1345), - [anon_sym_reverse] = ACTIONS(1345), - }, - [492] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [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_COLON] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [494] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [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_COLON] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1885), - [sym_string] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_COLON] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_transform] = ACTIONS(1887), - [anon_sym_filter] = ACTIONS(1887), - [anon_sym_find] = ACTIONS(1887), - [anon_sym_remove] = ACTIONS(1887), - [anon_sym_reduce] = ACTIONS(1887), - [anon_sym_select] = ACTIONS(1887), - [anon_sym_insert] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_table] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_assert_equal] = ACTIONS(1887), - [anon_sym_download] = ACTIONS(1887), - [anon_sym_help] = ACTIONS(1887), - [anon_sym_length] = ACTIONS(1887), - [anon_sym_output] = ACTIONS(1887), - [anon_sym_output_error] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_append] = ACTIONS(1887), - [anon_sym_metadata] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_read] = ACTIONS(1887), - [anon_sym_workdir] = ACTIONS(1887), - [anon_sym_write] = ACTIONS(1887), - [anon_sym_from_json] = ACTIONS(1887), - [anon_sym_to_json] = ACTIONS(1887), - [anon_sym_to_string] = ACTIONS(1887), - [anon_sym_to_float] = ACTIONS(1887), - [anon_sym_bash] = ACTIONS(1887), - [anon_sym_fish] = ACTIONS(1887), - [anon_sym_raw] = ACTIONS(1887), - [anon_sym_sh] = ACTIONS(1887), - [anon_sym_zsh] = ACTIONS(1887), - [anon_sym_random] = ACTIONS(1887), - [anon_sym_random_boolean] = ACTIONS(1887), - [anon_sym_random_float] = ACTIONS(1887), - [anon_sym_random_integer] = ACTIONS(1887), - [anon_sym_columns] = ACTIONS(1887), - [anon_sym_rows] = ACTIONS(1887), - [anon_sym_reverse] = ACTIONS(1887), - }, - [496] = { - [sym_expression] = STATE(961), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [497] = { - [sym_expression] = STATE(951), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [498] = { - [sym_expression] = STATE(962), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(569), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [499] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), - }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_COMMA] = ACTIONS(2104), - [sym_integer] = ACTIONS(2106), - [sym_float] = ACTIONS(2104), - [sym_string] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2106), - [anon_sym_false] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_RBRACK] = ACTIONS(2104), - [anon_sym_COLON] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PERCENT] = ACTIONS(2104), - [anon_sym_EQ_EQ] = ACTIONS(2104), - [anon_sym_BANG_EQ] = ACTIONS(2104), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_PIPE_PIPE] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_transform] = ACTIONS(2106), - [anon_sym_filter] = ACTIONS(2106), - [anon_sym_find] = ACTIONS(2106), - [anon_sym_remove] = ACTIONS(2106), - [anon_sym_reduce] = ACTIONS(2106), - [anon_sym_select] = ACTIONS(2106), - [anon_sym_insert] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_PIPE] = ACTIONS(2106), - [anon_sym_table] = ACTIONS(2106), - [anon_sym_assert] = ACTIONS(2106), - [anon_sym_assert_equal] = ACTIONS(2106), - [anon_sym_download] = ACTIONS(2106), - [anon_sym_help] = ACTIONS(2106), - [anon_sym_length] = ACTIONS(2106), - [anon_sym_output] = ACTIONS(2106), - [anon_sym_output_error] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_append] = ACTIONS(2106), - [anon_sym_metadata] = ACTIONS(2106), - [anon_sym_move] = ACTIONS(2106), - [anon_sym_read] = ACTIONS(2106), - [anon_sym_workdir] = ACTIONS(2106), - [anon_sym_write] = ACTIONS(2106), - [anon_sym_from_json] = ACTIONS(2106), - [anon_sym_to_json] = ACTIONS(2106), - [anon_sym_to_string] = ACTIONS(2106), - [anon_sym_to_float] = ACTIONS(2106), - [anon_sym_bash] = ACTIONS(2106), - [anon_sym_fish] = ACTIONS(2106), - [anon_sym_raw] = ACTIONS(2106), - [anon_sym_sh] = ACTIONS(2106), - [anon_sym_zsh] = ACTIONS(2106), - [anon_sym_random] = ACTIONS(2106), - [anon_sym_random_boolean] = ACTIONS(2106), - [anon_sym_random_float] = ACTIONS(2106), - [anon_sym_random_integer] = ACTIONS(2106), - [anon_sym_columns] = ACTIONS(2106), - [anon_sym_rows] = ACTIONS(2106), - [anon_sym_reverse] = ACTIONS(2106), - }, - [501] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(501), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1920), - [anon_sym_assert] = ACTIONS(1923), - [anon_sym_assert_equal] = ACTIONS(1923), - [anon_sym_download] = ACTIONS(1923), - [anon_sym_help] = ACTIONS(1923), - [anon_sym_length] = ACTIONS(1923), - [anon_sym_output] = ACTIONS(1923), - [anon_sym_output_error] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_append] = ACTIONS(1923), - [anon_sym_metadata] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_read] = ACTIONS(1923), - [anon_sym_workdir] = ACTIONS(1923), - [anon_sym_write] = ACTIONS(1923), - [anon_sym_from_json] = ACTIONS(1923), - [anon_sym_to_json] = ACTIONS(1923), - [anon_sym_to_string] = ACTIONS(1923), - [anon_sym_to_float] = ACTIONS(1923), - [anon_sym_bash] = ACTIONS(1923), - [anon_sym_fish] = ACTIONS(1923), - [anon_sym_raw] = ACTIONS(1923), - [anon_sym_sh] = ACTIONS(1923), - [anon_sym_zsh] = ACTIONS(1923), - [anon_sym_random] = ACTIONS(1923), - [anon_sym_random_boolean] = ACTIONS(1923), - [anon_sym_random_float] = ACTIONS(1923), - [anon_sym_random_integer] = ACTIONS(1923), - [anon_sym_columns] = ACTIONS(1923), - [anon_sym_rows] = ACTIONS(1923), - [anon_sym_reverse] = ACTIONS(1923), - }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_COMMA] = ACTIONS(2090), - [sym_integer] = ACTIONS(2092), - [sym_float] = ACTIONS(2090), - [sym_string] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2090), - [anon_sym_COLON] = ACTIONS(2090), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_transform] = ACTIONS(2092), - [anon_sym_filter] = ACTIONS(2092), - [anon_sym_find] = ACTIONS(2092), - [anon_sym_remove] = ACTIONS(2092), - [anon_sym_reduce] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_insert] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_table] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_assert_equal] = ACTIONS(2092), - [anon_sym_download] = ACTIONS(2092), - [anon_sym_help] = ACTIONS(2092), - [anon_sym_length] = ACTIONS(2092), - [anon_sym_output] = ACTIONS(2092), - [anon_sym_output_error] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_append] = ACTIONS(2092), - [anon_sym_metadata] = ACTIONS(2092), - [anon_sym_move] = ACTIONS(2092), - [anon_sym_read] = ACTIONS(2092), - [anon_sym_workdir] = ACTIONS(2092), - [anon_sym_write] = ACTIONS(2092), - [anon_sym_from_json] = ACTIONS(2092), - [anon_sym_to_json] = ACTIONS(2092), - [anon_sym_to_string] = ACTIONS(2092), - [anon_sym_to_float] = ACTIONS(2092), - [anon_sym_bash] = ACTIONS(2092), - [anon_sym_fish] = ACTIONS(2092), - [anon_sym_raw] = ACTIONS(2092), - [anon_sym_sh] = ACTIONS(2092), - [anon_sym_zsh] = ACTIONS(2092), - [anon_sym_random] = ACTIONS(2092), - [anon_sym_random_boolean] = ACTIONS(2092), - [anon_sym_random_float] = ACTIONS(2092), - [anon_sym_random_integer] = ACTIONS(2092), - [anon_sym_columns] = ACTIONS(2092), - [anon_sym_rows] = ACTIONS(2092), - [anon_sym_reverse] = ACTIONS(2092), - }, - [503] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [504] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_transform] = ACTIONS(1915), - [anon_sym_filter] = ACTIONS(1915), - [anon_sym_find] = ACTIONS(1915), - [anon_sym_remove] = ACTIONS(1915), - [anon_sym_reduce] = ACTIONS(1915), - [anon_sym_select] = ACTIONS(1915), - [anon_sym_insert] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), - }, - [505] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), - }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2098), - [sym_string] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_COLON] = ACTIONS(2098), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_match] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2100), - [anon_sym_for] = ACTIONS(2100), - [anon_sym_transform] = ACTIONS(2100), - [anon_sym_filter] = ACTIONS(2100), - [anon_sym_find] = ACTIONS(2100), - [anon_sym_remove] = ACTIONS(2100), - [anon_sym_reduce] = ACTIONS(2100), - [anon_sym_select] = ACTIONS(2100), - [anon_sym_insert] = ACTIONS(2100), - [anon_sym_async] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_table] = ACTIONS(2100), - [anon_sym_assert] = ACTIONS(2100), - [anon_sym_assert_equal] = ACTIONS(2100), - [anon_sym_download] = ACTIONS(2100), - [anon_sym_help] = ACTIONS(2100), - [anon_sym_length] = ACTIONS(2100), - [anon_sym_output] = ACTIONS(2100), - [anon_sym_output_error] = ACTIONS(2100), - [anon_sym_type] = ACTIONS(2100), - [anon_sym_append] = ACTIONS(2100), - [anon_sym_metadata] = ACTIONS(2100), - [anon_sym_move] = ACTIONS(2100), - [anon_sym_read] = ACTIONS(2100), - [anon_sym_workdir] = ACTIONS(2100), - [anon_sym_write] = ACTIONS(2100), - [anon_sym_from_json] = ACTIONS(2100), - [anon_sym_to_json] = ACTIONS(2100), - [anon_sym_to_string] = ACTIONS(2100), - [anon_sym_to_float] = ACTIONS(2100), - [anon_sym_bash] = ACTIONS(2100), - [anon_sym_fish] = ACTIONS(2100), - [anon_sym_raw] = ACTIONS(2100), - [anon_sym_sh] = ACTIONS(2100), - [anon_sym_zsh] = ACTIONS(2100), - [anon_sym_random] = ACTIONS(2100), - [anon_sym_random_boolean] = ACTIONS(2100), - [anon_sym_random_float] = ACTIONS(2100), - [anon_sym_random_integer] = ACTIONS(2100), - [anon_sym_columns] = ACTIONS(2100), - [anon_sym_rows] = ACTIONS(2100), - [anon_sym_reverse] = ACTIONS(2100), - }, - [507] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), - }, - [508] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1237), - [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_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), - }, - [509] = { - [sym_expression] = STATE(949), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_math_operator] = STATE(830), - [sym_logic] = STATE(907), - [sym_logic_operator] = STATE(829), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [510] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [511] = { - [sym_math_operator] = STATE(736), - [sym_logic_operator] = STATE(738), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_elseif] = ACTIONS(1964), - [anon_sym_else] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [512] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [513] = { - [sym_math_operator] = STATE(733), - [sym_logic_operator] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [514] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_transform] = ACTIONS(1932), - [anon_sym_filter] = ACTIONS(1932), - [anon_sym_find] = ACTIONS(1932), - [anon_sym_remove] = ACTIONS(1932), - [anon_sym_reduce] = ACTIONS(1932), - [anon_sym_select] = ACTIONS(1932), - [anon_sym_insert] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [515] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [516] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [517] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1257), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), - }, - [518] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [519] = { - [sym_expression] = STATE(948), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1294), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1304), - [sym_string] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_transform] = ACTIONS(1310), - [anon_sym_filter] = ACTIONS(1310), - [anon_sym_find] = ACTIONS(1310), - [anon_sym_remove] = ACTIONS(1310), - [anon_sym_reduce] = ACTIONS(1310), - [anon_sym_select] = ACTIONS(1310), - [anon_sym_insert] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(45), - [anon_sym_table] = ACTIONS(1314), - [anon_sym_assert] = ACTIONS(1316), - [anon_sym_assert_equal] = ACTIONS(1316), - [anon_sym_download] = ACTIONS(1316), - [anon_sym_help] = ACTIONS(1316), - [anon_sym_length] = ACTIONS(1316), - [anon_sym_output] = ACTIONS(1316), - [anon_sym_output_error] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_append] = ACTIONS(1316), - [anon_sym_metadata] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [anon_sym_read] = ACTIONS(1316), - [anon_sym_workdir] = ACTIONS(1316), - [anon_sym_write] = ACTIONS(1316), - [anon_sym_from_json] = ACTIONS(1316), - [anon_sym_to_json] = ACTIONS(1316), - [anon_sym_to_string] = ACTIONS(1316), - [anon_sym_to_float] = ACTIONS(1316), - [anon_sym_bash] = ACTIONS(1316), - [anon_sym_fish] = ACTIONS(1316), - [anon_sym_raw] = ACTIONS(1316), - [anon_sym_sh] = ACTIONS(1316), - [anon_sym_zsh] = ACTIONS(1316), - [anon_sym_random] = ACTIONS(1316), - [anon_sym_random_boolean] = ACTIONS(1316), - [anon_sym_random_float] = ACTIONS(1316), - [anon_sym_random_integer] = ACTIONS(1316), - [anon_sym_columns] = ACTIONS(1316), - [anon_sym_rows] = ACTIONS(1316), - [anon_sym_reverse] = ACTIONS(1316), - }, - [520] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [521] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), - }, - [522] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [523] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [524] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1322), - [sym_integer] = ACTIONS(1377), - [sym_float] = ACTIONS(1380), - [sym_string] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1345), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_table] = ACTIONS(1978), - [anon_sym_assert] = ACTIONS(1981), - [anon_sym_assert_equal] = ACTIONS(1981), - [anon_sym_download] = ACTIONS(1981), - [anon_sym_help] = ACTIONS(1981), - [anon_sym_length] = ACTIONS(1981), - [anon_sym_output] = ACTIONS(1981), - [anon_sym_output_error] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_append] = ACTIONS(1981), - [anon_sym_metadata] = ACTIONS(1981), - [anon_sym_move] = ACTIONS(1981), - [anon_sym_read] = ACTIONS(1981), - [anon_sym_workdir] = ACTIONS(1981), - [anon_sym_write] = ACTIONS(1981), - [anon_sym_from_json] = ACTIONS(1981), - [anon_sym_to_json] = ACTIONS(1981), - [anon_sym_to_string] = ACTIONS(1981), - [anon_sym_to_float] = ACTIONS(1981), - [anon_sym_bash] = ACTIONS(1981), - [anon_sym_fish] = ACTIONS(1981), - [anon_sym_raw] = ACTIONS(1981), - [anon_sym_sh] = ACTIONS(1981), - [anon_sym_zsh] = ACTIONS(1981), - [anon_sym_random] = ACTIONS(1981), - [anon_sym_random_boolean] = ACTIONS(1981), - [anon_sym_random_float] = ACTIONS(1981), - [anon_sym_random_integer] = ACTIONS(1981), - [anon_sym_columns] = ACTIONS(1981), - [anon_sym_rows] = ACTIONS(1981), - [anon_sym_reverse] = ACTIONS(1981), - }, - [525] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1318), - [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_COLON] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [526] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [527] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [528] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_transform] = ACTIONS(1953), - [anon_sym_filter] = ACTIONS(1953), - [anon_sym_find] = ACTIONS(1953), - [anon_sym_remove] = ACTIONS(1953), - [anon_sym_reduce] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1953), - [anon_sym_insert] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), - }, - [529] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1237), - [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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [530] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [531] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [532] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [533] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_transform] = ACTIONS(1936), - [anon_sym_filter] = ACTIONS(1936), - [anon_sym_find] = ACTIONS(1936), - [anon_sym_remove] = ACTIONS(1936), - [anon_sym_reduce] = ACTIONS(1936), - [anon_sym_select] = ACTIONS(1936), - [anon_sym_insert] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [534] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [535] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1926), - [sym_string] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_transform] = ACTIONS(1928), - [anon_sym_filter] = ACTIONS(1928), - [anon_sym_find] = ACTIONS(1928), - [anon_sym_remove] = ACTIONS(1928), - [anon_sym_reduce] = ACTIONS(1928), - [anon_sym_select] = ACTIONS(1928), - [anon_sym_insert] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_table] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_assert_equal] = ACTIONS(1928), - [anon_sym_download] = ACTIONS(1928), - [anon_sym_help] = ACTIONS(1928), - [anon_sym_length] = ACTIONS(1928), - [anon_sym_output] = ACTIONS(1928), - [anon_sym_output_error] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_append] = ACTIONS(1928), - [anon_sym_metadata] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [anon_sym_read] = ACTIONS(1928), - [anon_sym_workdir] = ACTIONS(1928), - [anon_sym_write] = ACTIONS(1928), - [anon_sym_from_json] = ACTIONS(1928), - [anon_sym_to_json] = ACTIONS(1928), - [anon_sym_to_string] = ACTIONS(1928), - [anon_sym_to_float] = ACTIONS(1928), - [anon_sym_bash] = ACTIONS(1928), - [anon_sym_fish] = ACTIONS(1928), - [anon_sym_raw] = ACTIONS(1928), - [anon_sym_sh] = ACTIONS(1928), - [anon_sym_zsh] = ACTIONS(1928), - [anon_sym_random] = ACTIONS(1928), - [anon_sym_random_boolean] = ACTIONS(1928), - [anon_sym_random_float] = ACTIONS(1928), - [anon_sym_random_integer] = ACTIONS(1928), - [anon_sym_columns] = ACTIONS(1928), - [anon_sym_rows] = ACTIONS(1928), - [anon_sym_reverse] = ACTIONS(1928), - }, - [536] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(524), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1245), - [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_COLON] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(1245), - [anon_sym_PERCENT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), - }, - [537] = { - [sym_expression] = STATE(971), - [sym__expression_kind] = STATE(907), - [sym_value] = STATE(907), - [sym_boolean] = STATE(906), - [sym_list] = STATE(906), - [sym_map] = STATE(906), - [sym_index] = STATE(907), - [sym_math] = STATE(907), - [sym_logic] = STATE(907), - [sym_identifier_list] = STATE(1044), - [sym_table] = STATE(906), - [sym_function] = STATE(906), - [sym_function_call] = STATE(907), - [sym__context_defined_function] = STATE(899), - [sym_built_in_function] = STATE(899), - [sym__built_in_function_name] = STATE(538), - [aux_sym_match_repeat1] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1257), [sym_identifier] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1257), [anon_sym_RBRACE] = ACTIONS(1257), [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1265), - [sym_integer] = ACTIONS(1268), - [sym_float] = ACTIONS(1271), - [sym_string] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_transform] = ACTIONS(1280), - [anon_sym_filter] = ACTIONS(1280), - [anon_sym_find] = ACTIONS(1280), - [anon_sym_remove] = ACTIONS(1280), - [anon_sym_reduce] = ACTIONS(1280), - [anon_sym_select] = ACTIONS(1280), - [anon_sym_insert] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [sym_integer] = ACTIONS(1259), + [sym_float] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_transform] = ACTIONS(1259), + [anon_sym_filter] = ACTIONS(1259), + [anon_sym_find] = ACTIONS(1259), + [anon_sym_remove] = ACTIONS(1259), + [anon_sym_reduce] = ACTIONS(1259), + [anon_sym_select] = ACTIONS(1259), + [anon_sym_insert] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_table] = ACTIONS(1259), + [anon_sym_assert] = ACTIONS(1259), + [anon_sym_assert_equal] = ACTIONS(1259), + [anon_sym_download] = ACTIONS(1259), + [anon_sym_help] = ACTIONS(1259), + [anon_sym_length] = ACTIONS(1259), + [anon_sym_output] = ACTIONS(1259), + [anon_sym_output_error] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_append] = ACTIONS(1259), + [anon_sym_metadata] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_read] = ACTIONS(1259), + [anon_sym_workdir] = ACTIONS(1259), + [anon_sym_write] = ACTIONS(1259), + [anon_sym_from_json] = ACTIONS(1259), + [anon_sym_to_json] = ACTIONS(1259), + [anon_sym_to_string] = ACTIONS(1259), + [anon_sym_to_float] = ACTIONS(1259), + [anon_sym_bash] = ACTIONS(1259), + [anon_sym_fish] = ACTIONS(1259), + [anon_sym_raw] = ACTIONS(1259), + [anon_sym_sh] = ACTIONS(1259), + [anon_sym_zsh] = ACTIONS(1259), + [anon_sym_random] = ACTIONS(1259), + [anon_sym_random_boolean] = ACTIONS(1259), + [anon_sym_random_float] = ACTIONS(1259), + [anon_sym_random_integer] = ACTIONS(1259), + [anon_sym_columns] = ACTIONS(1259), + [anon_sym_rows] = ACTIONS(1259), + [anon_sym_reverse] = ACTIONS(1259), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [sym_integer] = ACTIONS(1356), + [sym_float] = ACTIONS(1354), + [sym_string] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_EQ_GT] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_transform] = ACTIONS(1356), + [anon_sym_filter] = ACTIONS(1356), + [anon_sym_find] = ACTIONS(1356), + [anon_sym_remove] = ACTIONS(1356), + [anon_sym_reduce] = ACTIONS(1356), + [anon_sym_select] = ACTIONS(1356), + [anon_sym_insert] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_table] = ACTIONS(1356), + [anon_sym_assert] = ACTIONS(1356), + [anon_sym_assert_equal] = ACTIONS(1356), + [anon_sym_download] = ACTIONS(1356), + [anon_sym_help] = ACTIONS(1356), + [anon_sym_length] = ACTIONS(1356), + [anon_sym_output] = ACTIONS(1356), + [anon_sym_output_error] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_append] = ACTIONS(1356), + [anon_sym_metadata] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1356), + [anon_sym_read] = ACTIONS(1356), + [anon_sym_workdir] = ACTIONS(1356), + [anon_sym_write] = ACTIONS(1356), + [anon_sym_from_json] = ACTIONS(1356), + [anon_sym_to_json] = ACTIONS(1356), + [anon_sym_to_string] = ACTIONS(1356), + [anon_sym_to_float] = ACTIONS(1356), + [anon_sym_bash] = ACTIONS(1356), + [anon_sym_fish] = ACTIONS(1356), + [anon_sym_raw] = ACTIONS(1356), + [anon_sym_sh] = ACTIONS(1356), + [anon_sym_zsh] = ACTIONS(1356), + [anon_sym_random] = ACTIONS(1356), + [anon_sym_random_boolean] = ACTIONS(1356), + [anon_sym_random_float] = ACTIONS(1356), + [anon_sym_random_integer] = ACTIONS(1356), + [anon_sym_columns] = ACTIONS(1356), + [anon_sym_rows] = ACTIONS(1356), + [anon_sym_reverse] = ACTIONS(1356), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(902), + [sym_identifier] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(902), + [anon_sym_COMMA] = ACTIONS(902), + [sym_integer] = ACTIONS(928), + [sym_float] = ACTIONS(902), + [sym_string] = ACTIONS(902), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_RBRACK] = ACTIONS(902), + [anon_sym_async] = ACTIONS(928), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_if] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(902), + [anon_sym_while] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_transform] = ACTIONS(928), + [anon_sym_filter] = ACTIONS(928), + [anon_sym_find] = ACTIONS(928), + [anon_sym_remove] = ACTIONS(928), + [anon_sym_reduce] = ACTIONS(928), + [anon_sym_select] = ACTIONS(928), + [anon_sym_insert] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_table] = ACTIONS(928), + [anon_sym_assert] = ACTIONS(928), + [anon_sym_assert_equal] = ACTIONS(928), + [anon_sym_download] = ACTIONS(928), + [anon_sym_help] = ACTIONS(928), + [anon_sym_length] = ACTIONS(928), + [anon_sym_output] = ACTIONS(928), + [anon_sym_output_error] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_append] = ACTIONS(928), + [anon_sym_metadata] = ACTIONS(928), + [anon_sym_move] = ACTIONS(928), + [anon_sym_read] = ACTIONS(928), + [anon_sym_workdir] = ACTIONS(928), + [anon_sym_write] = ACTIONS(928), + [anon_sym_from_json] = ACTIONS(928), + [anon_sym_to_json] = ACTIONS(928), + [anon_sym_to_string] = ACTIONS(928), + [anon_sym_to_float] = ACTIONS(928), + [anon_sym_bash] = ACTIONS(928), + [anon_sym_fish] = ACTIONS(928), + [anon_sym_raw] = ACTIONS(928), + [anon_sym_sh] = ACTIONS(928), + [anon_sym_zsh] = ACTIONS(928), + [anon_sym_random] = ACTIONS(928), + [anon_sym_random_boolean] = ACTIONS(928), + [anon_sym_random_float] = ACTIONS(928), + [anon_sym_random_integer] = ACTIONS(928), + [anon_sym_columns] = ACTIONS(928), + [anon_sym_rows] = ACTIONS(928), + [anon_sym_reverse] = ACTIONS(928), + }, + [469] = { + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), [anon_sym_table] = ACTIONS(1288), - [anon_sym_assert] = ACTIONS(1291), - [anon_sym_assert_equal] = ACTIONS(1291), - [anon_sym_download] = ACTIONS(1291), - [anon_sym_help] = ACTIONS(1291), - [anon_sym_length] = ACTIONS(1291), - [anon_sym_output] = ACTIONS(1291), - [anon_sym_output_error] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_append] = ACTIONS(1291), - [anon_sym_metadata] = ACTIONS(1291), - [anon_sym_move] = ACTIONS(1291), - [anon_sym_read] = ACTIONS(1291), - [anon_sym_workdir] = ACTIONS(1291), - [anon_sym_write] = ACTIONS(1291), - [anon_sym_from_json] = ACTIONS(1291), - [anon_sym_to_json] = ACTIONS(1291), - [anon_sym_to_string] = ACTIONS(1291), - [anon_sym_to_float] = ACTIONS(1291), - [anon_sym_bash] = ACTIONS(1291), - [anon_sym_fish] = ACTIONS(1291), - [anon_sym_raw] = ACTIONS(1291), - [anon_sym_sh] = ACTIONS(1291), - [anon_sym_zsh] = ACTIONS(1291), - [anon_sym_random] = ACTIONS(1291), - [anon_sym_random_boolean] = ACTIONS(1291), - [anon_sym_random_float] = ACTIONS(1291), - [anon_sym_random_integer] = ACTIONS(1291), - [anon_sym_columns] = ACTIONS(1291), - [anon_sym_rows] = ACTIONS(1291), - [anon_sym_reverse] = ACTIONS(1291), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), }, - [538] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(525), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), + [470] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(1253), - [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_COLON] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1253), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [sym_integer] = ACTIONS(1352), + [sym_float] = ACTIONS(1350), + [sym_string] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_COLON] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_EQ_GT] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_transform] = ACTIONS(1352), + [anon_sym_filter] = ACTIONS(1352), + [anon_sym_find] = ACTIONS(1352), + [anon_sym_remove] = ACTIONS(1352), + [anon_sym_reduce] = ACTIONS(1352), + [anon_sym_select] = ACTIONS(1352), + [anon_sym_insert] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_table] = ACTIONS(1352), + [anon_sym_assert] = ACTIONS(1352), + [anon_sym_assert_equal] = ACTIONS(1352), + [anon_sym_download] = ACTIONS(1352), + [anon_sym_help] = ACTIONS(1352), + [anon_sym_length] = ACTIONS(1352), + [anon_sym_output] = ACTIONS(1352), + [anon_sym_output_error] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_append] = ACTIONS(1352), + [anon_sym_metadata] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1352), + [anon_sym_read] = ACTIONS(1352), + [anon_sym_workdir] = ACTIONS(1352), + [anon_sym_write] = ACTIONS(1352), + [anon_sym_from_json] = ACTIONS(1352), + [anon_sym_to_json] = ACTIONS(1352), + [anon_sym_to_string] = ACTIONS(1352), + [anon_sym_to_float] = ACTIONS(1352), + [anon_sym_bash] = ACTIONS(1352), + [anon_sym_fish] = ACTIONS(1352), + [anon_sym_raw] = ACTIONS(1352), + [anon_sym_sh] = ACTIONS(1352), + [anon_sym_zsh] = ACTIONS(1352), + [anon_sym_random] = ACTIONS(1352), + [anon_sym_random_boolean] = ACTIONS(1352), + [anon_sym_random_float] = ACTIONS(1352), + [anon_sym_random_integer] = ACTIONS(1352), + [anon_sym_columns] = ACTIONS(1352), + [anon_sym_rows] = ACTIONS(1352), + [anon_sym_reverse] = ACTIONS(1352), }, - [539] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), + [471] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_transform] = ACTIONS(1949), - [anon_sym_filter] = ACTIONS(1949), - [anon_sym_find] = ACTIONS(1949), - [anon_sym_remove] = ACTIONS(1949), - [anon_sym_reduce] = ACTIONS(1949), - [anon_sym_select] = ACTIONS(1949), - [anon_sym_insert] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(1338), + [sym_integer] = ACTIONS(1340), + [sym_float] = ACTIONS(1338), + [sym_string] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_COLON] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_EQ_GT] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_transform] = ACTIONS(1340), + [anon_sym_filter] = ACTIONS(1340), + [anon_sym_find] = ACTIONS(1340), + [anon_sym_remove] = ACTIONS(1340), + [anon_sym_reduce] = ACTIONS(1340), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_insert] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_table] = ACTIONS(1340), + [anon_sym_assert] = ACTIONS(1340), + [anon_sym_assert_equal] = ACTIONS(1340), + [anon_sym_download] = ACTIONS(1340), + [anon_sym_help] = ACTIONS(1340), + [anon_sym_length] = ACTIONS(1340), + [anon_sym_output] = ACTIONS(1340), + [anon_sym_output_error] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_append] = ACTIONS(1340), + [anon_sym_metadata] = ACTIONS(1340), + [anon_sym_move] = ACTIONS(1340), + [anon_sym_read] = ACTIONS(1340), + [anon_sym_workdir] = ACTIONS(1340), + [anon_sym_write] = ACTIONS(1340), + [anon_sym_from_json] = ACTIONS(1340), + [anon_sym_to_json] = ACTIONS(1340), + [anon_sym_to_string] = ACTIONS(1340), + [anon_sym_to_float] = ACTIONS(1340), + [anon_sym_bash] = ACTIONS(1340), + [anon_sym_fish] = ACTIONS(1340), + [anon_sym_raw] = ACTIONS(1340), + [anon_sym_sh] = ACTIONS(1340), + [anon_sym_zsh] = ACTIONS(1340), + [anon_sym_random] = ACTIONS(1340), + [anon_sym_random_boolean] = ACTIONS(1340), + [anon_sym_random_float] = ACTIONS(1340), + [anon_sym_random_integer] = ACTIONS(1340), + [anon_sym_columns] = ACTIONS(1340), + [anon_sym_rows] = ACTIONS(1340), + [anon_sym_reverse] = ACTIONS(1340), }, - [540] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), + [472] = { + [sym_math_operator] = STATE(668), + [sym_logic_operator] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1269), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1267), + [sym_string] = ACTIONS(1267), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_transform] = ACTIONS(1269), + [anon_sym_filter] = ACTIONS(1269), + [anon_sym_find] = ACTIONS(1269), + [anon_sym_remove] = ACTIONS(1269), + [anon_sym_reduce] = ACTIONS(1269), + [anon_sym_select] = ACTIONS(1269), + [anon_sym_insert] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_table] = ACTIONS(1269), + [anon_sym_assert] = ACTIONS(1269), + [anon_sym_assert_equal] = ACTIONS(1269), + [anon_sym_download] = ACTIONS(1269), + [anon_sym_help] = ACTIONS(1269), + [anon_sym_length] = ACTIONS(1269), + [anon_sym_output] = ACTIONS(1269), + [anon_sym_output_error] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_append] = ACTIONS(1269), + [anon_sym_metadata] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1269), + [anon_sym_read] = ACTIONS(1269), + [anon_sym_workdir] = ACTIONS(1269), + [anon_sym_write] = ACTIONS(1269), + [anon_sym_from_json] = ACTIONS(1269), + [anon_sym_to_json] = ACTIONS(1269), + [anon_sym_to_string] = ACTIONS(1269), + [anon_sym_to_float] = ACTIONS(1269), + [anon_sym_bash] = ACTIONS(1269), + [anon_sym_fish] = ACTIONS(1269), + [anon_sym_raw] = ACTIONS(1269), + [anon_sym_sh] = ACTIONS(1269), + [anon_sym_zsh] = ACTIONS(1269), + [anon_sym_random] = ACTIONS(1269), + [anon_sym_random_boolean] = ACTIONS(1269), + [anon_sym_random_float] = ACTIONS(1269), + [anon_sym_random_integer] = ACTIONS(1269), + [anon_sym_columns] = ACTIONS(1269), + [anon_sym_rows] = ACTIONS(1269), + [anon_sym_reverse] = ACTIONS(1269), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_DOT_DOT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1431), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [sym_integer] = ACTIONS(1431), + [sym_float] = ACTIONS(1429), + [sym_string] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_EQ_GT] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_transform] = ACTIONS(1431), + [anon_sym_filter] = ACTIONS(1431), + [anon_sym_find] = ACTIONS(1431), + [anon_sym_remove] = ACTIONS(1431), + [anon_sym_reduce] = ACTIONS(1431), + [anon_sym_select] = ACTIONS(1431), + [anon_sym_insert] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_table] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_assert_equal] = ACTIONS(1431), + [anon_sym_download] = ACTIONS(1431), + [anon_sym_help] = ACTIONS(1431), + [anon_sym_length] = ACTIONS(1431), + [anon_sym_output] = ACTIONS(1431), + [anon_sym_output_error] = ACTIONS(1431), + [anon_sym_type] = ACTIONS(1431), + [anon_sym_append] = ACTIONS(1431), + [anon_sym_metadata] = ACTIONS(1431), + [anon_sym_move] = ACTIONS(1431), + [anon_sym_read] = ACTIONS(1431), + [anon_sym_workdir] = ACTIONS(1431), + [anon_sym_write] = ACTIONS(1431), + [anon_sym_from_json] = ACTIONS(1431), + [anon_sym_to_json] = ACTIONS(1431), + [anon_sym_to_string] = ACTIONS(1431), + [anon_sym_to_float] = ACTIONS(1431), + [anon_sym_bash] = ACTIONS(1431), + [anon_sym_fish] = ACTIONS(1431), + [anon_sym_raw] = ACTIONS(1431), + [anon_sym_sh] = ACTIONS(1431), + [anon_sym_zsh] = ACTIONS(1431), + [anon_sym_random] = ACTIONS(1431), + [anon_sym_random_boolean] = ACTIONS(1431), + [anon_sym_random_float] = ACTIONS(1431), + [anon_sym_random_integer] = ACTIONS(1431), + [anon_sym_columns] = ACTIONS(1431), + [anon_sym_rows] = ACTIONS(1431), + [anon_sym_reverse] = ACTIONS(1431), + }, + [475] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1334), + [sym_integer] = ACTIONS(1336), + [sym_float] = ACTIONS(1334), + [sym_string] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_EQ_GT] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_transform] = ACTIONS(1336), + [anon_sym_filter] = ACTIONS(1336), + [anon_sym_find] = ACTIONS(1336), + [anon_sym_remove] = ACTIONS(1336), + [anon_sym_reduce] = ACTIONS(1336), + [anon_sym_select] = ACTIONS(1336), + [anon_sym_insert] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_table] = ACTIONS(1336), + [anon_sym_assert] = ACTIONS(1336), + [anon_sym_assert_equal] = ACTIONS(1336), + [anon_sym_download] = ACTIONS(1336), + [anon_sym_help] = ACTIONS(1336), + [anon_sym_length] = ACTIONS(1336), + [anon_sym_output] = ACTIONS(1336), + [anon_sym_output_error] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_append] = ACTIONS(1336), + [anon_sym_metadata] = ACTIONS(1336), + [anon_sym_move] = ACTIONS(1336), + [anon_sym_read] = ACTIONS(1336), + [anon_sym_workdir] = ACTIONS(1336), + [anon_sym_write] = ACTIONS(1336), + [anon_sym_from_json] = ACTIONS(1336), + [anon_sym_to_json] = ACTIONS(1336), + [anon_sym_to_string] = ACTIONS(1336), + [anon_sym_to_float] = ACTIONS(1336), + [anon_sym_bash] = ACTIONS(1336), + [anon_sym_fish] = ACTIONS(1336), + [anon_sym_raw] = ACTIONS(1336), + [anon_sym_sh] = ACTIONS(1336), + [anon_sym_zsh] = ACTIONS(1336), + [anon_sym_random] = ACTIONS(1336), + [anon_sym_random_boolean] = ACTIONS(1336), + [anon_sym_random_float] = ACTIONS(1336), + [anon_sym_random_integer] = ACTIONS(1336), + [anon_sym_columns] = ACTIONS(1336), + [anon_sym_rows] = ACTIONS(1336), + [anon_sym_reverse] = ACTIONS(1336), + }, + [476] = { + [sym_math_operator] = STATE(570), + [sym_logic_operator] = STATE(569), + [sym_identifier] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1437), + [sym_string] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_COLON] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_EQ_GT] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_transform] = ACTIONS(1439), + [anon_sym_filter] = ACTIONS(1439), + [anon_sym_find] = ACTIONS(1439), + [anon_sym_remove] = ACTIONS(1439), + [anon_sym_reduce] = ACTIONS(1439), + [anon_sym_select] = ACTIONS(1439), + [anon_sym_insert] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_table] = ACTIONS(1439), + [anon_sym_assert] = ACTIONS(1439), + [anon_sym_assert_equal] = ACTIONS(1439), + [anon_sym_download] = ACTIONS(1439), + [anon_sym_help] = ACTIONS(1439), + [anon_sym_length] = ACTIONS(1439), + [anon_sym_output] = ACTIONS(1439), + [anon_sym_output_error] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_append] = ACTIONS(1439), + [anon_sym_metadata] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_read] = ACTIONS(1439), + [anon_sym_workdir] = ACTIONS(1439), + [anon_sym_write] = ACTIONS(1439), + [anon_sym_from_json] = ACTIONS(1439), + [anon_sym_to_json] = ACTIONS(1439), + [anon_sym_to_string] = ACTIONS(1439), + [anon_sym_to_float] = ACTIONS(1439), + [anon_sym_bash] = ACTIONS(1439), + [anon_sym_fish] = ACTIONS(1439), + [anon_sym_raw] = ACTIONS(1439), + [anon_sym_sh] = ACTIONS(1439), + [anon_sym_zsh] = ACTIONS(1439), + [anon_sym_random] = ACTIONS(1439), + [anon_sym_random_boolean] = ACTIONS(1439), + [anon_sym_random_float] = ACTIONS(1439), + [anon_sym_random_integer] = ACTIONS(1439), + [anon_sym_columns] = ACTIONS(1439), + [anon_sym_rows] = ACTIONS(1439), + [anon_sym_reverse] = ACTIONS(1439), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [sym_integer] = ACTIONS(1443), + [sym_float] = ACTIONS(1441), + [sym_string] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACK] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_COLON] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_EQ_GT] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_transform] = ACTIONS(1443), + [anon_sym_filter] = ACTIONS(1443), + [anon_sym_find] = ACTIONS(1443), + [anon_sym_remove] = ACTIONS(1443), + [anon_sym_reduce] = ACTIONS(1443), + [anon_sym_select] = ACTIONS(1443), + [anon_sym_insert] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_table] = ACTIONS(1443), + [anon_sym_assert] = ACTIONS(1443), + [anon_sym_assert_equal] = ACTIONS(1443), + [anon_sym_download] = ACTIONS(1443), + [anon_sym_help] = ACTIONS(1443), + [anon_sym_length] = ACTIONS(1443), + [anon_sym_output] = ACTIONS(1443), + [anon_sym_output_error] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_append] = ACTIONS(1443), + [anon_sym_metadata] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_read] = ACTIONS(1443), + [anon_sym_workdir] = ACTIONS(1443), + [anon_sym_write] = ACTIONS(1443), + [anon_sym_from_json] = ACTIONS(1443), + [anon_sym_to_json] = ACTIONS(1443), + [anon_sym_to_string] = ACTIONS(1443), + [anon_sym_to_float] = ACTIONS(1443), + [anon_sym_bash] = ACTIONS(1443), + [anon_sym_fish] = ACTIONS(1443), + [anon_sym_raw] = ACTIONS(1443), + [anon_sym_sh] = ACTIONS(1443), + [anon_sym_zsh] = ACTIONS(1443), + [anon_sym_random] = ACTIONS(1443), + [anon_sym_random_boolean] = ACTIONS(1443), + [anon_sym_random_float] = ACTIONS(1443), + [anon_sym_random_integer] = ACTIONS(1443), + [anon_sym_columns] = ACTIONS(1443), + [anon_sym_rows] = ACTIONS(1443), + [anon_sym_reverse] = ACTIONS(1443), + }, + [479] = { + [sym_math_operator] = STATE(654), + [sym_logic_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_elseif] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1389), + [sym_string] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_COLON] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_EQ_EQ] = ACTIONS(1389), + [anon_sym_BANG_EQ] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1389), + [anon_sym_LT_EQ] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_match] = ACTIONS(1391), + [anon_sym_EQ_GT] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_transform] = ACTIONS(1391), + [anon_sym_filter] = ACTIONS(1391), + [anon_sym_find] = ACTIONS(1391), + [anon_sym_remove] = ACTIONS(1391), + [anon_sym_reduce] = ACTIONS(1391), + [anon_sym_select] = ACTIONS(1391), + [anon_sym_insert] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_table] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_assert_equal] = ACTIONS(1391), + [anon_sym_download] = ACTIONS(1391), + [anon_sym_help] = ACTIONS(1391), + [anon_sym_length] = ACTIONS(1391), + [anon_sym_output] = ACTIONS(1391), + [anon_sym_output_error] = ACTIONS(1391), + [anon_sym_type] = ACTIONS(1391), + [anon_sym_append] = ACTIONS(1391), + [anon_sym_metadata] = ACTIONS(1391), + [anon_sym_move] = ACTIONS(1391), + [anon_sym_read] = ACTIONS(1391), + [anon_sym_workdir] = ACTIONS(1391), + [anon_sym_write] = ACTIONS(1391), + [anon_sym_from_json] = ACTIONS(1391), + [anon_sym_to_json] = ACTIONS(1391), + [anon_sym_to_string] = ACTIONS(1391), + [anon_sym_to_float] = ACTIONS(1391), + [anon_sym_bash] = ACTIONS(1391), + [anon_sym_fish] = ACTIONS(1391), + [anon_sym_raw] = ACTIONS(1391), + [anon_sym_sh] = ACTIONS(1391), + [anon_sym_zsh] = ACTIONS(1391), + [anon_sym_random] = ACTIONS(1391), + [anon_sym_random_boolean] = ACTIONS(1391), + [anon_sym_random_float] = ACTIONS(1391), + [anon_sym_random_integer] = ACTIONS(1391), + [anon_sym_columns] = ACTIONS(1391), + [anon_sym_rows] = ACTIONS(1391), + [anon_sym_reverse] = ACTIONS(1391), + }, + [481] = { + [sym_expression] = STATE(463), + [sym__expression_kind] = STATE(475), + [aux_sym__expression_list] = STATE(207), + [sym_value] = STATE(475), + [sym_boolean] = STATE(443), + [sym_list] = STATE(443), + [sym_map] = STATE(443), + [sym_future] = STATE(443), + [sym_index] = STATE(475), + [sym_math] = STATE(475), + [sym_logic] = STATE(475), + [sym_identifier_list] = STATE(1080), + [sym_table] = STATE(443), + [sym_function] = STATE(443), + [sym_function_call] = STATE(475), + [sym__context_defined_function] = STATE(470), + [sym_built_in_function] = STATE(470), + [sym__built_in_function_name] = STATE(189), + [sym_identifier] = ACTIONS(822), + [sym_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(9), [sym_integer] = ACTIONS(11), [sym_float] = ACTIONS(13), @@ -54139,1441 +48728,841 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(15), [anon_sym_false] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(219), + [anon_sym_COLON] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_table] = ACTIONS(245), + [anon_sym_assert] = ACTIONS(247), + [anon_sym_assert_equal] = ACTIONS(247), + [anon_sym_download] = ACTIONS(247), + [anon_sym_help] = ACTIONS(247), + [anon_sym_length] = ACTIONS(247), + [anon_sym_output] = ACTIONS(247), + [anon_sym_output_error] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_append] = ACTIONS(247), + [anon_sym_metadata] = ACTIONS(247), + [anon_sym_move] = ACTIONS(247), + [anon_sym_read] = ACTIONS(247), + [anon_sym_workdir] = ACTIONS(247), + [anon_sym_write] = ACTIONS(247), + [anon_sym_from_json] = ACTIONS(247), + [anon_sym_to_json] = ACTIONS(247), + [anon_sym_to_string] = ACTIONS(247), + [anon_sym_to_float] = ACTIONS(247), + [anon_sym_bash] = ACTIONS(247), + [anon_sym_fish] = ACTIONS(247), + [anon_sym_raw] = ACTIONS(247), + [anon_sym_sh] = ACTIONS(247), + [anon_sym_zsh] = ACTIONS(247), + [anon_sym_random] = ACTIONS(247), + [anon_sym_random_boolean] = ACTIONS(247), + [anon_sym_random_float] = ACTIONS(247), + [anon_sym_random_integer] = ACTIONS(247), + [anon_sym_columns] = ACTIONS(247), + [anon_sym_rows] = ACTIONS(247), + [anon_sym_reverse] = ACTIONS(247), }, - [541] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1239), + [482] = { + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1455), + [sym_string] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_transform] = ACTIONS(1457), + [anon_sym_filter] = ACTIONS(1457), + [anon_sym_find] = ACTIONS(1457), + [anon_sym_remove] = ACTIONS(1457), + [anon_sym_reduce] = ACTIONS(1457), + [anon_sym_select] = ACTIONS(1457), + [anon_sym_insert] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_table] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_assert_equal] = ACTIONS(1457), + [anon_sym_download] = ACTIONS(1457), + [anon_sym_help] = ACTIONS(1457), + [anon_sym_length] = ACTIONS(1457), + [anon_sym_output] = ACTIONS(1457), + [anon_sym_output_error] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_append] = ACTIONS(1457), + [anon_sym_metadata] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [anon_sym_read] = ACTIONS(1457), + [anon_sym_workdir] = ACTIONS(1457), + [anon_sym_write] = ACTIONS(1457), + [anon_sym_from_json] = ACTIONS(1457), + [anon_sym_to_json] = ACTIONS(1457), + [anon_sym_to_string] = ACTIONS(1457), + [anon_sym_to_float] = ACTIONS(1457), + [anon_sym_bash] = ACTIONS(1457), + [anon_sym_fish] = ACTIONS(1457), + [anon_sym_raw] = ACTIONS(1457), + [anon_sym_sh] = ACTIONS(1457), + [anon_sym_zsh] = ACTIONS(1457), + [anon_sym_random] = ACTIONS(1457), + [anon_sym_random_boolean] = ACTIONS(1457), + [anon_sym_random_float] = ACTIONS(1457), + [anon_sym_random_integer] = ACTIONS(1457), + [anon_sym_columns] = ACTIONS(1457), + [anon_sym_rows] = ACTIONS(1457), + [anon_sym_reverse] = ACTIONS(1457), }, - [542] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), + [483] = { + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [sym_integer] = ACTIONS(1453), + [sym_float] = ACTIONS(1451), + [sym_string] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_transform] = ACTIONS(1453), + [anon_sym_filter] = ACTIONS(1453), + [anon_sym_find] = ACTIONS(1453), + [anon_sym_remove] = ACTIONS(1453), + [anon_sym_reduce] = ACTIONS(1453), + [anon_sym_select] = ACTIONS(1453), + [anon_sym_insert] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_table] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_assert_equal] = ACTIONS(1453), + [anon_sym_download] = ACTIONS(1453), + [anon_sym_help] = ACTIONS(1453), + [anon_sym_length] = ACTIONS(1453), + [anon_sym_output] = ACTIONS(1453), + [anon_sym_output_error] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_append] = ACTIONS(1453), + [anon_sym_metadata] = ACTIONS(1453), + [anon_sym_move] = ACTIONS(1453), + [anon_sym_read] = ACTIONS(1453), + [anon_sym_workdir] = ACTIONS(1453), + [anon_sym_write] = ACTIONS(1453), + [anon_sym_from_json] = ACTIONS(1453), + [anon_sym_to_json] = ACTIONS(1453), + [anon_sym_to_string] = ACTIONS(1453), + [anon_sym_to_float] = ACTIONS(1453), + [anon_sym_bash] = ACTIONS(1453), + [anon_sym_fish] = ACTIONS(1453), + [anon_sym_raw] = ACTIONS(1453), + [anon_sym_sh] = ACTIONS(1453), + [anon_sym_zsh] = ACTIONS(1453), + [anon_sym_random] = ACTIONS(1453), + [anon_sym_random_boolean] = ACTIONS(1453), + [anon_sym_random_float] = ACTIONS(1453), + [anon_sym_random_integer] = ACTIONS(1453), + [anon_sym_columns] = ACTIONS(1453), + [anon_sym_rows] = ACTIONS(1453), + [anon_sym_reverse] = ACTIONS(1453), }, - [543] = { - [sym_expression] = STATE(571), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(492), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1055), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(352), - [sym_identifier] = ACTIONS(1398), + [484] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1905), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_assert_equal] = ACTIONS(1907), - [anon_sym_download] = ACTIONS(1907), - [anon_sym_help] = ACTIONS(1907), - [anon_sym_length] = ACTIONS(1907), - [anon_sym_output] = ACTIONS(1907), - [anon_sym_output_error] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_append] = ACTIONS(1907), - [anon_sym_metadata] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_read] = ACTIONS(1907), - [anon_sym_workdir] = ACTIONS(1907), - [anon_sym_write] = ACTIONS(1907), - [anon_sym_from_json] = ACTIONS(1907), - [anon_sym_to_json] = ACTIONS(1907), - [anon_sym_to_string] = ACTIONS(1907), - [anon_sym_to_float] = ACTIONS(1907), - [anon_sym_bash] = ACTIONS(1907), - [anon_sym_fish] = ACTIONS(1907), - [anon_sym_raw] = ACTIONS(1907), - [anon_sym_sh] = ACTIONS(1907), - [anon_sym_zsh] = ACTIONS(1907), - [anon_sym_random] = ACTIONS(1907), - [anon_sym_random_boolean] = ACTIONS(1907), - [anon_sym_random_float] = ACTIONS(1907), - [anon_sym_random_integer] = ACTIONS(1907), - [anon_sym_columns] = ACTIONS(1907), - [anon_sym_rows] = ACTIONS(1907), - [anon_sym_reverse] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [sym_integer] = ACTIONS(1288), + [sym_float] = ACTIONS(1286), + [sym_string] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_transform] = ACTIONS(1288), + [anon_sym_filter] = ACTIONS(1288), + [anon_sym_find] = ACTIONS(1288), + [anon_sym_remove] = ACTIONS(1288), + [anon_sym_reduce] = ACTIONS(1288), + [anon_sym_select] = ACTIONS(1288), + [anon_sym_insert] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_table] = ACTIONS(1288), + [anon_sym_assert] = ACTIONS(1288), + [anon_sym_assert_equal] = ACTIONS(1288), + [anon_sym_download] = ACTIONS(1288), + [anon_sym_help] = ACTIONS(1288), + [anon_sym_length] = ACTIONS(1288), + [anon_sym_output] = ACTIONS(1288), + [anon_sym_output_error] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_append] = ACTIONS(1288), + [anon_sym_metadata] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [anon_sym_read] = ACTIONS(1288), + [anon_sym_workdir] = ACTIONS(1288), + [anon_sym_write] = ACTIONS(1288), + [anon_sym_from_json] = ACTIONS(1288), + [anon_sym_to_json] = ACTIONS(1288), + [anon_sym_to_string] = ACTIONS(1288), + [anon_sym_to_float] = ACTIONS(1288), + [anon_sym_bash] = ACTIONS(1288), + [anon_sym_fish] = ACTIONS(1288), + [anon_sym_raw] = ACTIONS(1288), + [anon_sym_sh] = ACTIONS(1288), + [anon_sym_zsh] = ACTIONS(1288), + [anon_sym_random] = ACTIONS(1288), + [anon_sym_random_boolean] = ACTIONS(1288), + [anon_sym_random_float] = ACTIONS(1288), + [anon_sym_random_integer] = ACTIONS(1288), + [anon_sym_columns] = ACTIONS(1288), + [anon_sym_rows] = ACTIONS(1288), + [anon_sym_reverse] = ACTIONS(1288), }, - [544] = { - [sym_math_operator] = STATE(800), - [sym_logic_operator] = STATE(799), - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), + [485] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1265), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [sym_integer] = ACTIONS(1265), + [sym_float] = ACTIONS(1263), + [sym_string] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1265), + [anon_sym_false] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_transform] = ACTIONS(1265), + [anon_sym_filter] = ACTIONS(1265), + [anon_sym_find] = ACTIONS(1265), + [anon_sym_remove] = ACTIONS(1265), + [anon_sym_reduce] = ACTIONS(1265), + [anon_sym_select] = ACTIONS(1265), + [anon_sym_insert] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_table] = ACTIONS(1265), + [anon_sym_assert] = ACTIONS(1265), + [anon_sym_assert_equal] = ACTIONS(1265), + [anon_sym_download] = ACTIONS(1265), + [anon_sym_help] = ACTIONS(1265), + [anon_sym_length] = ACTIONS(1265), + [anon_sym_output] = ACTIONS(1265), + [anon_sym_output_error] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_append] = ACTIONS(1265), + [anon_sym_metadata] = ACTIONS(1265), + [anon_sym_move] = ACTIONS(1265), + [anon_sym_read] = ACTIONS(1265), + [anon_sym_workdir] = ACTIONS(1265), + [anon_sym_write] = ACTIONS(1265), + [anon_sym_from_json] = ACTIONS(1265), + [anon_sym_to_json] = ACTIONS(1265), + [anon_sym_to_string] = ACTIONS(1265), + [anon_sym_to_float] = ACTIONS(1265), + [anon_sym_bash] = ACTIONS(1265), + [anon_sym_fish] = ACTIONS(1265), + [anon_sym_raw] = ACTIONS(1265), + [anon_sym_sh] = ACTIONS(1265), + [anon_sym_zsh] = ACTIONS(1265), + [anon_sym_random] = ACTIONS(1265), + [anon_sym_random_boolean] = ACTIONS(1265), + [anon_sym_random_float] = ACTIONS(1265), + [anon_sym_random_integer] = ACTIONS(1265), + [anon_sym_columns] = ACTIONS(1265), + [anon_sym_rows] = ACTIONS(1265), + [anon_sym_reverse] = ACTIONS(1265), }, - [545] = { - [sym_math_operator] = STATE(623), - [sym_logic_operator] = STATE(664), - [sym_identifier] = ACTIONS(1966), + [486] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1299), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [sym_integer] = ACTIONS(1966), - [sym_float] = ACTIONS(1964), - [sym_string] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_COLON] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_transform] = ACTIONS(1966), - [anon_sym_filter] = ACTIONS(1966), - [anon_sym_find] = ACTIONS(1966), - [anon_sym_remove] = ACTIONS(1966), - [anon_sym_reduce] = ACTIONS(1966), - [anon_sym_select] = ACTIONS(1966), - [anon_sym_insert] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_table] = ACTIONS(1966), - [anon_sym_assert] = ACTIONS(1966), - [anon_sym_assert_equal] = ACTIONS(1966), - [anon_sym_download] = ACTIONS(1966), - [anon_sym_help] = ACTIONS(1966), - [anon_sym_length] = ACTIONS(1966), - [anon_sym_output] = ACTIONS(1966), - [anon_sym_output_error] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_append] = ACTIONS(1966), - [anon_sym_metadata] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [anon_sym_read] = ACTIONS(1966), - [anon_sym_workdir] = ACTIONS(1966), - [anon_sym_write] = ACTIONS(1966), - [anon_sym_from_json] = ACTIONS(1966), - [anon_sym_to_json] = ACTIONS(1966), - [anon_sym_to_string] = ACTIONS(1966), - [anon_sym_to_float] = ACTIONS(1966), - [anon_sym_bash] = ACTIONS(1966), - [anon_sym_fish] = ACTIONS(1966), - [anon_sym_raw] = ACTIONS(1966), - [anon_sym_sh] = ACTIONS(1966), - [anon_sym_zsh] = ACTIONS(1966), - [anon_sym_random] = ACTIONS(1966), - [anon_sym_random_boolean] = ACTIONS(1966), - [anon_sym_random_float] = ACTIONS(1966), - [anon_sym_random_integer] = ACTIONS(1966), - [anon_sym_columns] = ACTIONS(1966), - [anon_sym_rows] = ACTIONS(1966), - [anon_sym_reverse] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_COLON] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_match] = ACTIONS(1299), + [anon_sym_EQ_GT] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_transform] = ACTIONS(1299), + [anon_sym_filter] = ACTIONS(1299), + [anon_sym_find] = ACTIONS(1299), + [anon_sym_remove] = ACTIONS(1299), + [anon_sym_reduce] = ACTIONS(1299), + [anon_sym_select] = ACTIONS(1299), + [anon_sym_insert] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_table] = ACTIONS(1299), + [anon_sym_assert] = ACTIONS(1299), + [anon_sym_assert_equal] = ACTIONS(1299), + [anon_sym_download] = ACTIONS(1299), + [anon_sym_help] = ACTIONS(1299), + [anon_sym_length] = ACTIONS(1299), + [anon_sym_output] = ACTIONS(1299), + [anon_sym_output_error] = ACTIONS(1299), + [anon_sym_type] = ACTIONS(1299), + [anon_sym_append] = ACTIONS(1299), + [anon_sym_metadata] = ACTIONS(1299), + [anon_sym_move] = ACTIONS(1299), + [anon_sym_read] = ACTIONS(1299), + [anon_sym_workdir] = ACTIONS(1299), + [anon_sym_write] = ACTIONS(1299), + [anon_sym_from_json] = ACTIONS(1299), + [anon_sym_to_json] = ACTIONS(1299), + [anon_sym_to_string] = ACTIONS(1299), + [anon_sym_to_float] = ACTIONS(1299), + [anon_sym_bash] = ACTIONS(1299), + [anon_sym_fish] = ACTIONS(1299), + [anon_sym_raw] = ACTIONS(1299), + [anon_sym_sh] = ACTIONS(1299), + [anon_sym_zsh] = ACTIONS(1299), + [anon_sym_random] = ACTIONS(1299), + [anon_sym_random_boolean] = ACTIONS(1299), + [anon_sym_random_float] = ACTIONS(1299), + [anon_sym_random_integer] = ACTIONS(1299), + [anon_sym_columns] = ACTIONS(1299), + [anon_sym_rows] = ACTIONS(1299), + [anon_sym_reverse] = ACTIONS(1299), }, - [546] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1398), + [487] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1311), + [sym_string] = ACTIONS(1311), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_transform] = ACTIONS(1313), + [anon_sym_filter] = ACTIONS(1313), + [anon_sym_find] = ACTIONS(1313), + [anon_sym_remove] = ACTIONS(1313), + [anon_sym_reduce] = ACTIONS(1313), + [anon_sym_select] = ACTIONS(1313), + [anon_sym_insert] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_table] = ACTIONS(1313), + [anon_sym_assert] = ACTIONS(1313), + [anon_sym_assert_equal] = ACTIONS(1313), + [anon_sym_download] = ACTIONS(1313), + [anon_sym_help] = ACTIONS(1313), + [anon_sym_length] = ACTIONS(1313), + [anon_sym_output] = ACTIONS(1313), + [anon_sym_output_error] = ACTIONS(1313), + [anon_sym_type] = ACTIONS(1313), + [anon_sym_append] = ACTIONS(1313), + [anon_sym_metadata] = ACTIONS(1313), + [anon_sym_move] = ACTIONS(1313), + [anon_sym_read] = ACTIONS(1313), + [anon_sym_workdir] = ACTIONS(1313), + [anon_sym_write] = ACTIONS(1313), + [anon_sym_from_json] = ACTIONS(1313), + [anon_sym_to_json] = ACTIONS(1313), + [anon_sym_to_string] = ACTIONS(1313), + [anon_sym_to_float] = ACTIONS(1313), + [anon_sym_bash] = ACTIONS(1313), + [anon_sym_fish] = ACTIONS(1313), + [anon_sym_raw] = ACTIONS(1313), + [anon_sym_sh] = ACTIONS(1313), + [anon_sym_zsh] = ACTIONS(1313), + [anon_sym_random] = ACTIONS(1313), + [anon_sym_random_boolean] = ACTIONS(1313), + [anon_sym_random_float] = ACTIONS(1313), + [anon_sym_random_integer] = ACTIONS(1313), + [anon_sym_columns] = ACTIONS(1313), + [anon_sym_rows] = ACTIONS(1313), + [anon_sym_reverse] = ACTIONS(1313), }, - [547] = { - [sym_expression] = STATE(573), - [sym__expression_kind] = STATE(466), - [aux_sym__expression_list] = STATE(536), - [sym_value] = STATE(466), - [sym_boolean] = STATE(481), - [sym_list] = STATE(481), - [sym_map] = STATE(481), - [sym_index] = STATE(466), - [sym_math] = STATE(466), - [sym_logic] = STATE(466), - [sym_identifier_list] = STATE(1192), - [sym_table] = STATE(481), - [sym_function] = STATE(481), - [sym_function_call] = STATE(466), - [sym__context_defined_function] = STATE(473), - [sym_built_in_function] = STATE(473), - [sym__built_in_function_name] = STATE(364), - [sym_identifier] = ACTIONS(1239), + [488] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_LPAREN] = 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_COLON] = ACTIONS(1237), - [anon_sym_PLUS] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_SLASH] = ACTIONS(1237), - [anon_sym_PERCENT] = ACTIONS(1237), - [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_EQ] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_table] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1814), - [anon_sym_assert_equal] = ACTIONS(1814), - [anon_sym_download] = ACTIONS(1814), - [anon_sym_help] = ACTIONS(1814), - [anon_sym_length] = ACTIONS(1814), - [anon_sym_output] = ACTIONS(1814), - [anon_sym_output_error] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_append] = ACTIONS(1814), - [anon_sym_metadata] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [anon_sym_read] = ACTIONS(1814), - [anon_sym_workdir] = ACTIONS(1814), - [anon_sym_write] = ACTIONS(1814), - [anon_sym_from_json] = ACTIONS(1814), - [anon_sym_to_json] = ACTIONS(1814), - [anon_sym_to_string] = ACTIONS(1814), - [anon_sym_to_float] = ACTIONS(1814), - [anon_sym_bash] = ACTIONS(1814), - [anon_sym_fish] = ACTIONS(1814), - [anon_sym_raw] = ACTIONS(1814), - [anon_sym_sh] = ACTIONS(1814), - [anon_sym_zsh] = ACTIONS(1814), - [anon_sym_random] = ACTIONS(1814), - [anon_sym_random_boolean] = ACTIONS(1814), - [anon_sym_random_float] = ACTIONS(1814), - [anon_sym_random_integer] = ACTIONS(1814), - [anon_sym_columns] = ACTIONS(1814), - [anon_sym_rows] = ACTIONS(1814), - [anon_sym_reverse] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [sym_integer] = ACTIONS(1309), + [sym_float] = ACTIONS(1307), + [sym_string] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_transform] = ACTIONS(1309), + [anon_sym_filter] = ACTIONS(1309), + [anon_sym_find] = ACTIONS(1309), + [anon_sym_remove] = ACTIONS(1309), + [anon_sym_reduce] = ACTIONS(1309), + [anon_sym_select] = ACTIONS(1309), + [anon_sym_insert] = ACTIONS(1309), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_table] = ACTIONS(1309), + [anon_sym_assert] = ACTIONS(1309), + [anon_sym_assert_equal] = ACTIONS(1309), + [anon_sym_download] = ACTIONS(1309), + [anon_sym_help] = ACTIONS(1309), + [anon_sym_length] = ACTIONS(1309), + [anon_sym_output] = ACTIONS(1309), + [anon_sym_output_error] = ACTIONS(1309), + [anon_sym_type] = ACTIONS(1309), + [anon_sym_append] = ACTIONS(1309), + [anon_sym_metadata] = ACTIONS(1309), + [anon_sym_move] = ACTIONS(1309), + [anon_sym_read] = ACTIONS(1309), + [anon_sym_workdir] = ACTIONS(1309), + [anon_sym_write] = ACTIONS(1309), + [anon_sym_from_json] = ACTIONS(1309), + [anon_sym_to_json] = ACTIONS(1309), + [anon_sym_to_string] = ACTIONS(1309), + [anon_sym_to_float] = ACTIONS(1309), + [anon_sym_bash] = ACTIONS(1309), + [anon_sym_fish] = ACTIONS(1309), + [anon_sym_raw] = ACTIONS(1309), + [anon_sym_sh] = ACTIONS(1309), + [anon_sym_zsh] = ACTIONS(1309), + [anon_sym_random] = ACTIONS(1309), + [anon_sym_random_boolean] = ACTIONS(1309), + [anon_sym_random_float] = ACTIONS(1309), + [anon_sym_random_integer] = ACTIONS(1309), + [anon_sym_columns] = ACTIONS(1309), + [anon_sym_rows] = ACTIONS(1309), + [anon_sym_reverse] = ACTIONS(1309), }, - [548] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1953), + [489] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1951), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1951), - [sym_string] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_RBRACK] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_table] = ACTIONS(1953), - [anon_sym_assert] = ACTIONS(1953), - [anon_sym_assert_equal] = ACTIONS(1953), - [anon_sym_download] = ACTIONS(1953), - [anon_sym_help] = ACTIONS(1953), - [anon_sym_length] = ACTIONS(1953), - [anon_sym_output] = ACTIONS(1953), - [anon_sym_output_error] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_append] = ACTIONS(1953), - [anon_sym_metadata] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [anon_sym_read] = ACTIONS(1953), - [anon_sym_workdir] = ACTIONS(1953), - [anon_sym_write] = ACTIONS(1953), - [anon_sym_from_json] = ACTIONS(1953), - [anon_sym_to_json] = ACTIONS(1953), - [anon_sym_to_string] = ACTIONS(1953), - [anon_sym_to_float] = ACTIONS(1953), - [anon_sym_bash] = ACTIONS(1953), - [anon_sym_fish] = ACTIONS(1953), - [anon_sym_raw] = ACTIONS(1953), - [anon_sym_sh] = ACTIONS(1953), - [anon_sym_zsh] = ACTIONS(1953), - [anon_sym_random] = ACTIONS(1953), - [anon_sym_random_boolean] = ACTIONS(1953), - [anon_sym_random_float] = ACTIONS(1953), - [anon_sym_random_integer] = ACTIONS(1953), - [anon_sym_columns] = ACTIONS(1953), - [anon_sym_rows] = ACTIONS(1953), - [anon_sym_reverse] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, - [549] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1915), + [490] = { + [sym_math_operator] = STATE(679), + [sym_logic_operator] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, - [550] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1932), + [491] = { + [sym_math_operator] = STATE(612), + [sym_logic_operator] = STATE(611), + [sym_identifier] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1930), - [sym_string] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COLON] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_table] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_assert_equal] = ACTIONS(1932), - [anon_sym_download] = ACTIONS(1932), - [anon_sym_help] = ACTIONS(1932), - [anon_sym_length] = ACTIONS(1932), - [anon_sym_output] = ACTIONS(1932), - [anon_sym_output_error] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_append] = ACTIONS(1932), - [anon_sym_metadata] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [anon_sym_read] = ACTIONS(1932), - [anon_sym_workdir] = ACTIONS(1932), - [anon_sym_write] = ACTIONS(1932), - [anon_sym_from_json] = ACTIONS(1932), - [anon_sym_to_json] = ACTIONS(1932), - [anon_sym_to_string] = ACTIONS(1932), - [anon_sym_to_float] = ACTIONS(1932), - [anon_sym_bash] = ACTIONS(1932), - [anon_sym_fish] = ACTIONS(1932), - [anon_sym_raw] = ACTIONS(1932), - [anon_sym_sh] = ACTIONS(1932), - [anon_sym_zsh] = ACTIONS(1932), - [anon_sym_random] = ACTIONS(1932), - [anon_sym_random_boolean] = ACTIONS(1932), - [anon_sym_random_float] = ACTIONS(1932), - [anon_sym_random_integer] = ACTIONS(1932), - [anon_sym_columns] = ACTIONS(1932), - [anon_sym_rows] = ACTIONS(1932), - [anon_sym_reverse] = ACTIONS(1932), - }, - [551] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1949), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1947), - [sym_string] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_table] = ACTIONS(1949), - [anon_sym_assert] = ACTIONS(1949), - [anon_sym_assert_equal] = ACTIONS(1949), - [anon_sym_download] = ACTIONS(1949), - [anon_sym_help] = ACTIONS(1949), - [anon_sym_length] = ACTIONS(1949), - [anon_sym_output] = ACTIONS(1949), - [anon_sym_output_error] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_append] = ACTIONS(1949), - [anon_sym_metadata] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [anon_sym_read] = ACTIONS(1949), - [anon_sym_workdir] = ACTIONS(1949), - [anon_sym_write] = ACTIONS(1949), - [anon_sym_from_json] = ACTIONS(1949), - [anon_sym_to_json] = ACTIONS(1949), - [anon_sym_to_string] = ACTIONS(1949), - [anon_sym_to_float] = ACTIONS(1949), - [anon_sym_bash] = ACTIONS(1949), - [anon_sym_fish] = ACTIONS(1949), - [anon_sym_raw] = ACTIONS(1949), - [anon_sym_sh] = ACTIONS(1949), - [anon_sym_zsh] = ACTIONS(1949), - [anon_sym_random] = ACTIONS(1949), - [anon_sym_random_boolean] = ACTIONS(1949), - [anon_sym_random_float] = ACTIONS(1949), - [anon_sym_random_integer] = ACTIONS(1949), - [anon_sym_columns] = ACTIONS(1949), - [anon_sym_rows] = ACTIONS(1949), - [anon_sym_reverse] = ACTIONS(1949), - }, - [552] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1934), - [sym_string] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COLON] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_table] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_assert_equal] = ACTIONS(1936), - [anon_sym_download] = ACTIONS(1936), - [anon_sym_help] = ACTIONS(1936), - [anon_sym_length] = ACTIONS(1936), - [anon_sym_output] = ACTIONS(1936), - [anon_sym_output_error] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_append] = ACTIONS(1936), - [anon_sym_metadata] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [anon_sym_read] = ACTIONS(1936), - [anon_sym_workdir] = ACTIONS(1936), - [anon_sym_write] = ACTIONS(1936), - [anon_sym_from_json] = ACTIONS(1936), - [anon_sym_to_json] = ACTIONS(1936), - [anon_sym_to_string] = ACTIONS(1936), - [anon_sym_to_float] = ACTIONS(1936), - [anon_sym_bash] = ACTIONS(1936), - [anon_sym_fish] = ACTIONS(1936), - [anon_sym_raw] = ACTIONS(1936), - [anon_sym_sh] = ACTIONS(1936), - [anon_sym_zsh] = ACTIONS(1936), - [anon_sym_random] = ACTIONS(1936), - [anon_sym_random_boolean] = ACTIONS(1936), - [anon_sym_random_float] = ACTIONS(1936), - [anon_sym_random_integer] = ACTIONS(1936), - [anon_sym_columns] = ACTIONS(1936), - [anon_sym_rows] = ACTIONS(1936), - [anon_sym_reverse] = ACTIONS(1936), - }, - [553] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1940), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(2031), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1938), - [sym_string] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COLON] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_STAR] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(69), - [anon_sym_EQ_EQ] = ACTIONS(73), - [anon_sym_BANG_EQ] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(73), - [anon_sym_PIPE_PIPE] = ACTIONS(73), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(73), - [anon_sym_LT_EQ] = ACTIONS(73), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_table] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_assert_equal] = ACTIONS(1940), - [anon_sym_download] = ACTIONS(1940), - [anon_sym_help] = ACTIONS(1940), - [anon_sym_length] = ACTIONS(1940), - [anon_sym_output] = ACTIONS(1940), - [anon_sym_output_error] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_append] = ACTIONS(1940), - [anon_sym_metadata] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [anon_sym_read] = ACTIONS(1940), - [anon_sym_workdir] = ACTIONS(1940), - [anon_sym_write] = ACTIONS(1940), - [anon_sym_from_json] = ACTIONS(1940), - [anon_sym_to_json] = ACTIONS(1940), - [anon_sym_to_string] = ACTIONS(1940), - [anon_sym_to_float] = ACTIONS(1940), - [anon_sym_bash] = ACTIONS(1940), - [anon_sym_fish] = ACTIONS(1940), - [anon_sym_raw] = ACTIONS(1940), - [anon_sym_sh] = ACTIONS(1940), - [anon_sym_zsh] = ACTIONS(1940), - [anon_sym_random] = ACTIONS(1940), - [anon_sym_random_boolean] = ACTIONS(1940), - [anon_sym_random_float] = ACTIONS(1940), - [anon_sym_random_integer] = ACTIONS(1940), - [anon_sym_columns] = ACTIONS(1940), - [anon_sym_rows] = ACTIONS(1940), - [anon_sym_reverse] = ACTIONS(1940), - }, - [554] = { - [sym_math_operator] = STATE(726), - [sym_logic_operator] = STATE(725), - [sym_identifier] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1913), - [sym_string] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_EQ_GT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_table] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_assert_equal] = ACTIONS(1915), - [anon_sym_download] = ACTIONS(1915), - [anon_sym_help] = ACTIONS(1915), - [anon_sym_length] = ACTIONS(1915), - [anon_sym_output] = ACTIONS(1915), - [anon_sym_output_error] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_append] = ACTIONS(1915), - [anon_sym_metadata] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_read] = ACTIONS(1915), - [anon_sym_workdir] = ACTIONS(1915), - [anon_sym_write] = ACTIONS(1915), - [anon_sym_from_json] = ACTIONS(1915), - [anon_sym_to_json] = ACTIONS(1915), - [anon_sym_to_string] = ACTIONS(1915), - [anon_sym_to_float] = ACTIONS(1915), - [anon_sym_bash] = ACTIONS(1915), - [anon_sym_fish] = ACTIONS(1915), - [anon_sym_raw] = ACTIONS(1915), - [anon_sym_sh] = ACTIONS(1915), - [anon_sym_zsh] = ACTIONS(1915), - [anon_sym_random] = ACTIONS(1915), - [anon_sym_random_boolean] = ACTIONS(1915), - [anon_sym_random_float] = ACTIONS(1915), - [anon_sym_random_integer] = ACTIONS(1915), - [anon_sym_columns] = ACTIONS(1915), - [anon_sym_rows] = ACTIONS(1915), - [anon_sym_reverse] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_async] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(73), + [anon_sym_STAR] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(71), + [anon_sym_PERCENT] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(75), + [anon_sym_BANG_EQ] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(75), + [anon_sym_PIPE_PIPE] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(75), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_match] = ACTIONS(1303), + [anon_sym_EQ_GT] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_transform] = ACTIONS(1303), + [anon_sym_filter] = ACTIONS(1303), + [anon_sym_find] = ACTIONS(1303), + [anon_sym_remove] = ACTIONS(1303), + [anon_sym_reduce] = ACTIONS(1303), + [anon_sym_select] = ACTIONS(1303), + [anon_sym_insert] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_table] = ACTIONS(1303), + [anon_sym_assert] = ACTIONS(1303), + [anon_sym_assert_equal] = ACTIONS(1303), + [anon_sym_download] = ACTIONS(1303), + [anon_sym_help] = ACTIONS(1303), + [anon_sym_length] = ACTIONS(1303), + [anon_sym_output] = ACTIONS(1303), + [anon_sym_output_error] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_append] = ACTIONS(1303), + [anon_sym_metadata] = ACTIONS(1303), + [anon_sym_move] = ACTIONS(1303), + [anon_sym_read] = ACTIONS(1303), + [anon_sym_workdir] = ACTIONS(1303), + [anon_sym_write] = ACTIONS(1303), + [anon_sym_from_json] = ACTIONS(1303), + [anon_sym_to_json] = ACTIONS(1303), + [anon_sym_to_string] = ACTIONS(1303), + [anon_sym_to_float] = ACTIONS(1303), + [anon_sym_bash] = ACTIONS(1303), + [anon_sym_fish] = ACTIONS(1303), + [anon_sym_raw] = ACTIONS(1303), + [anon_sym_sh] = ACTIONS(1303), + [anon_sym_zsh] = ACTIONS(1303), + [anon_sym_random] = ACTIONS(1303), + [anon_sym_random_boolean] = ACTIONS(1303), + [anon_sym_random_float] = ACTIONS(1303), + [anon_sym_random_integer] = ACTIONS(1303), + [anon_sym_columns] = ACTIONS(1303), + [anon_sym_rows] = ACTIONS(1303), + [anon_sym_reverse] = ACTIONS(1303), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 7, ACTIONS(3), 1, sym_comment, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(1930), 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_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_EQ_GT, - ACTIONS(1932), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [75] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1947), 11, - 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_EQ_GT, - ACTIONS(1949), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [160] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(1934), 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_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_EQ_GT, - ACTIONS(1936), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [235] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1951), 11, - 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_EQ_GT, - ACTIONS(1953), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [320] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2031), 1, - anon_sym_COMMA, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1938), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - ACTIONS(1940), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [407] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, + ACTIONS(1496), 1, anon_sym_elseif, - ACTIONS(2174), 1, + ACTIONS(1498), 1, anon_sym_else, - STATE(793), 1, + STATE(702), 1, sym_else, - STATE(566), 2, + STATE(497), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(1899), 10, + ACTIONS(1249), 10, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55584,11 +49573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(1901), 47, + ACTIONS(1251), 47, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, + anon_sym_async, anon_sym_if, anon_sym_match, anon_sym_while, @@ -55600,6 +49590,22995 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_reduce, anon_sym_select, anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [78] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, + anon_sym_elseif, + ACTIONS(1502), 1, + anon_sym_else, + STATE(781), 1, + sym_else, + STATE(495), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1249), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1251), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [156] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_RBRACK, + ACTIONS(960), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(966), 1, + anon_sym_LPAREN, + ACTIONS(969), 1, + sym_integer, + ACTIONS(978), 1, + anon_sym_LBRACK, + ACTIONS(995), 1, + anon_sym_async, + ACTIONS(998), 1, + anon_sym_EQ_GT, + ACTIONS(1001), 1, + anon_sym_table, + ACTIONS(1504), 1, + anon_sym_PIPE, + STATE(189), 1, + sym__built_in_function_name, + STATE(494), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(972), 2, + sym_float, + sym_string, + ACTIONS(975), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(1004), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, + anon_sym_elseif, + ACTIONS(1502), 1, + anon_sym_else, + STATE(775), 1, + sym_else, + STATE(506), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1257), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [340] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, + anon_sym_elseif, + ACTIONS(1507), 1, + anon_sym_else, + STATE(692), 1, + sym_else, + STATE(506), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1257), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [418] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_elseif, + ACTIONS(1498), 1, + anon_sym_else, + STATE(692), 1, + sym_else, + STATE(508), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1257), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [496] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1509), 1, + anon_sym_RBRACK, + STATE(189), 1, + sym__built_in_function_name, + STATE(494), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [602] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1511), 1, + anon_sym_RBRACK, + STATE(189), 1, + sym__built_in_function_name, + STATE(494), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [708] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, + anon_sym_elseif, + ACTIONS(1507), 1, + anon_sym_else, + STATE(702), 1, + sym_else, + STATE(496), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1249), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1251), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [786] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + ACTIONS(1513), 1, + anon_sym_RBRACK, + STATE(189), 1, + sym__built_in_function_name, + STATE(494), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [892] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_elseif, + ACTIONS(1515), 1, + anon_sym_else, + STATE(775), 1, + sym_else, + STATE(508), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1257), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [970] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_elseif, + ACTIONS(1515), 1, + anon_sym_else, + STATE(781), 1, + sym_else, + STATE(502), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1249), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1251), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1048] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(499), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1151] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(498), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_elseif, + STATE(506), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1273), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1275), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1327] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_DASH, + ACTIONS(221), 1, + anon_sym_COLON, + ACTIONS(1520), 1, + anon_sym_COMMA, + STATE(611), 1, + sym_logic_operator, + STATE(612), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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(1290), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + ACTIONS(1292), 37, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_PIPE, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1522), 1, + anon_sym_elseif, + STATE(508), 2, + sym_else_if, + aux_sym_if_else_repeat1, + ACTIONS(1273), 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_EQ_GT, + anon_sym_PIPE, + ACTIONS(1275), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1485] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(501), 1, + aux_sym__expression_list, + STATE(507), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(58), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(47), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(99), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(124), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [1988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(130), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1525), 1, + sym_identifier, + ACTIONS(1527), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(846), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(34), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1529), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(851), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(403), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1531), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(866), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1533), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(832), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(134), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(35), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1535), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(867), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [2988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(381), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1537), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(852), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(375), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(107), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1545), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(826), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(56), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1547), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(868), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(374), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(85), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1549), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(836), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [3988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(59), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(86), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(88), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(89), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(90), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(91), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(92), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1551), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(840), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(453), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(355), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [4988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1553), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(861), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_async, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_table, + STATE(172), 1, + sym__built_in_function_name, + STATE(806), 1, + sym_expression, + STATE(927), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1563), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(854), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(358), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(315), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(3), 1, + sym_expression, + STATE(168), 1, + sym__built_in_function_name, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1565), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(860), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(361), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1545), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(820), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(817), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [5988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(37), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(41), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(869), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(870), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1575), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(862), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(106), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(44), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(393), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(100), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(819), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(101), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [6988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(54), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(55), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(57), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(168), 1, + sym__built_in_function_name, + STATE(328), 1, + sym_expression, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(60), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(168), 1, + sym__built_in_function_name, + STATE(335), 1, + sym_expression, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(168), 1, + sym__built_in_function_name, + STATE(323), 1, + sym_expression, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(308), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(168), 1, + sym__built_in_function_name, + STATE(332), 1, + sym_expression, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(61), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [7988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1156), 1, + anon_sym_async, + ACTIONS(1158), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_table, + ACTIONS(1581), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(811), 1, + sym_expression, + STATE(1013), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(102), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(103), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1156), 1, + anon_sym_async, + ACTIONS(1158), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_table, + ACTIONS(1581), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(809), 1, + sym_expression, + STATE(1013), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8388] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(62), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8488] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1156), 1, + anon_sym_async, + ACTIONS(1158), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_table, + ACTIONS(1581), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(813), 1, + sym_expression, + STATE(1013), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8588] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_async, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_table, + STATE(172), 1, + sym__built_in_function_name, + STATE(799), 1, + sym_expression, + STATE(927), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8688] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1156), 1, + anon_sym_async, + ACTIONS(1158), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_table, + ACTIONS(1581), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(808), 1, + sym_expression, + STATE(1013), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8788] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(109), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8888] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(31), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [8988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(113), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(122), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9188] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(405), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9288] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(168), 1, + sym__built_in_function_name, + STATE(324), 1, + sym_expression, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1418), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1420), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(824), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(40), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(436), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(46), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(93), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [9956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(110), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(426), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(7), 1, + sym_expression, + STATE(189), 1, + sym__built_in_function_name, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(64), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(67), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(68), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(111), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(94), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(96), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(97), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [10956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(105), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(115), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(73), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(74), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(112), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(127), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(136), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(420), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(418), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(362), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [11956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(416), 1, + sym_expression, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(146), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(133), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(138), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(141), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(142), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(359), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(83), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(82), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(76), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [12956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(72), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(131), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(876), 1, + sym_identifier, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(896), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(834), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(71), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(70), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(98), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(69), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(125), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(876), 1, + sym_identifier, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(896), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(845), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(66), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [13956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(95), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(84), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(81), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(79), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(78), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(75), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(50), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(876), 1, + sym_identifier, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(896), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(835), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(821), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(869), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(871), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [14956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(876), 1, + sym_identifier, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(896), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(859), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(191), 1, + sym__built_in_function_name, + STATE(422), 1, + sym_expression, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(389), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(32), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(350), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15456] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(191), 1, + sym__built_in_function_name, + STATE(434), 1, + sym_expression, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15556] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(104), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(126), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15756] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(25), 1, + sym_expression, + STATE(189), 1, + sym__built_in_function_name, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15856] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(485), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [15956] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(191), 1, + sym__built_in_function_name, + STATE(419), 1, + sym_expression, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16056] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(472), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16156] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(140), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(401), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(191), 1, + sym__built_in_function_name, + STATE(430), 1, + sym_expression, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1457), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16524] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(87), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(80), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1328), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16792] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(77), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16892] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(52), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [16992] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(49), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17092] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(39), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17192] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(438), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17292] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(447), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17392] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(459), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17492] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(145), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1439), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1443), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1447), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1449), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17796] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(135), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1431), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [17964] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(144), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18064] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(143), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18164] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(137), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18264] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(486), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18364] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(129), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18464] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(128), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18564] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(17), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18664] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(198), 1, + sym__built_in_function_name, + STATE(469), 1, + sym_expression, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1412), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1416), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [18900] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(48), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19000] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(119), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19100] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(342), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19200] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(114), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19300] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1583), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(850), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19400] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(123), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1387), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1383), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19636] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(2), 1, + sym_expression, + STATE(160), 1, + sym__built_in_function_name, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19736] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(487), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19836] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1156), 1, + anon_sym_async, + ACTIONS(1158), 1, + anon_sym_EQ_GT, + ACTIONS(1178), 1, + anon_sym_table, + ACTIONS(1581), 1, + sym_identifier, + STATE(189), 1, + sym__built_in_function_name, + STATE(812), 1, + sym_expression, + STATE(1013), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [19936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1379), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20004] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(827), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20104] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(831), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1371), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1453), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20408] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(8), 1, + sym_expression, + STATE(191), 1, + sym__built_in_function_name, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20508] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(336), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20608] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(5), 1, + sym_expression, + STATE(172), 1, + sym__built_in_function_name, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20708] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1583), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(848), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20808] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(108), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [20908] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1583), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(853), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21008] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1545), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(830), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1340), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21176] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1545), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(816), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21276] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1539), 1, + sym_identifier, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1545), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(815), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21376] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1527), 1, + anon_sym_table, + ACTIONS(1583), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(847), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1492), 1, + anon_sym_SEMI, + ACTIONS(1301), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1303), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1344), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21614] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(4), 1, + sym_expression, + STATE(177), 1, + sym__built_in_function_name, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(843), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21814] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(116), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [21914] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(117), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(118), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22114] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(349), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22214] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(369), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22314] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(147), 1, + anon_sym_async, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(175), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(177), 1, + sym__built_in_function_name, + STATE(348), 1, + sym_expression, + STATE(1047), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(177), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22414] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(36), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(38), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22614] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(402), 1, + anon_sym_async, + ACTIONS(408), 1, + anon_sym_EQ_GT, + ACTIONS(428), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(13), 1, + sym_expression, + STATE(198), 1, + sym__built_in_function_name, + STATE(952), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(191), 1, + sym__built_in_function_name, + STATE(414), 1, + sym_expression, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22814] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(251), 1, + anon_sym_async, + ACTIONS(259), 1, + anon_sym_EQ_GT, + ACTIONS(279), 1, + anon_sym_table, + ACTIONS(830), 1, + sym_identifier, + STATE(11), 1, + sym_expression, + STATE(191), 1, + sym__built_in_function_name, + STATE(946), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(281), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [22914] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(818), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(814), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23114] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + sym_identifier, + ACTIONS(1579), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(825), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23214] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(42), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23314] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(43), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23414] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(45), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(33), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23614] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(51), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(53), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23814] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(120), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [23914] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(842), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(841), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24114] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(63), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24214] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(377), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24314] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(373), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24414] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(354), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(338), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24614] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, + anon_sym_async, + ACTIONS(1543), 1, + anon_sym_EQ_GT, + ACTIONS(1567), 1, + sym_identifier, + ACTIONS(1569), 1, + anon_sym_table, + STATE(198), 1, + sym__built_in_function_name, + STATE(829), 1, + sym_expression, + STATE(970), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(430), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24714] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(839), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24814] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(219), 1, + anon_sym_async, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(245), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(22), 1, + sym_expression, + STATE(189), 1, + sym__built_in_function_name, + STATE(1080), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(247), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [24914] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(181), 1, + anon_sym_async, + ACTIONS(187), 1, + anon_sym_EQ_GT, + ACTIONS(207), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(172), 1, + sym__built_in_function_name, + STATE(353), 1, + sym_expression, + STATE(934), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25014] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(65), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25114] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(894), 1, + anon_sym_EQ_GT, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1573), 1, + anon_sym_table, + STATE(209), 1, + sym__built_in_function_name, + STATE(869), 1, + sym_expression, + STATE(973), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(872), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25214] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(21), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25314] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(484), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25414] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(132), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25514] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(209), 1, + sym__built_in_function_name, + STATE(488), 1, + sym_expression, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_elseif, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1435), 48, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25682] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(121), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25782] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(320), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25882] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(316), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [25982] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(307), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26082] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + sym_integer, + ACTIONS(17), 1, + anon_sym_LBRACK, + ACTIONS(19), 1, + anon_sym_async, + ACTIONS(25), 1, + anon_sym_EQ_GT, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym_table, + ACTIONS(480), 1, + anon_sym_LBRACE, + ACTIONS(958), 1, + sym_identifier, + STATE(139), 1, + sym_expression, + STATE(209), 1, + sym__built_in_function_name, + STATE(977), 1, + sym_identifier_list, + ACTIONS(13), 2, + sym_float, + sym_string, + ACTIONS(15), 2, + anon_sym_true, + anon_sym_false, + STATE(470), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(443), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(475), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(49), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26182] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_async, + ACTIONS(121), 1, + anon_sym_EQ_GT, + ACTIONS(141), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(12), 1, + sym_expression, + STATE(168), 1, + sym__built_in_function_name, + STATE(953), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(143), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26282] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_integer, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_async, + ACTIONS(85), 1, + anon_sym_EQ_GT, + ACTIONS(107), 1, + anon_sym_table, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(830), 1, + sym_identifier, + STATE(160), 1, + sym__built_in_function_name, + STATE(313), 1, + sym_expression, + STATE(991), 1, + sym_identifier_list, + ACTIONS(61), 2, + sym_float, + sym_string, + ACTIONS(63), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(341), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + STATE(386), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + ACTIONS(109), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26382] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_async, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_table, + STATE(172), 1, + sym__built_in_function_name, + STATE(807), 1, + sym_expression, + STATE(927), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26482] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_async, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_table, + STATE(172), 1, + sym__built_in_function_name, + STATE(797), 1, + sym_expression, + STATE(927), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26582] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_LBRACE, + ACTIONS(880), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + sym_integer, + ACTIONS(888), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_async, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_table, + STATE(172), 1, + sym__built_in_function_name, + STATE(805), 1, + sym_expression, + STATE(927), 1, + sym_identifier_list, + ACTIONS(884), 2, + sym_float, + sym_string, + ACTIONS(886), 2, + anon_sym_true, + anon_sym_false, + STATE(790), 2, + sym__context_defined_function, + sym_built_in_function, + STATE(792), 6, + sym_boolean, + sym_list, + sym_map, + sym_future, + sym_table, + sym_function, + STATE(795), 6, + sym__expression_kind, + sym_value, + sym_index, + sym_math, + sym_logic, + sym_function_call, + ACTIONS(209), 30, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1412), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1418), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1420), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1441), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1443), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1447), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1449), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [26946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1439), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1328), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1457), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_SEMI, + ACTIONS(1301), 10, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1303), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1385), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1387), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1416), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1371), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1379), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1431), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1381), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1383), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1257), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1259), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1453), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1340), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1585), 47, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_if, + anon_sym_match, + anon_sym_while, + anon_sym_for, + anon_sym_transform, + anon_sym_filter, + anon_sym_find, + anon_sym_remove, + anon_sym_reduce, + anon_sym_select, + anon_sym_insert, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [27868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 8, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(928), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, anon_sym_async, anon_sym_table, anon_sym_assert, @@ -55632,45 +72611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [485] = 7, + [27920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2176), 1, - anon_sym_else, - STATE(586), 1, - sym_else, - STATE(568), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 10, - ts_builtin_sym_end, + ACTIONS(1591), 7, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LPAREN, sym_float, sym_string, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(1901), 47, + ACTIONS(1589), 36, sym_identifier, sym_integer, anon_sym_true, anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, anon_sym_async, anon_sym_table, anon_sym_assert, @@ -55703,30834 +72659,5416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_columns, anon_sym_rows, anon_sym_reverse, - [563] = 7, + [27971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2180), 1, - anon_sym_else, + ACTIONS(1595), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1593), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1597), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1603), 7, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_float, + sym_string, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + ACTIONS(1601), 36, + sym_identifier, + sym_integer, + anon_sym_true, + anon_sym_false, + anon_sym_async, + anon_sym_table, + anon_sym_assert, + anon_sym_assert_equal, + anon_sym_download, + anon_sym_help, + anon_sym_length, + anon_sym_output, + anon_sym_output_error, + anon_sym_type, + anon_sym_append, + anon_sym_metadata, + anon_sym_move, + anon_sym_read, + anon_sym_workdir, + anon_sym_write, + anon_sym_from_json, + anon_sym_to_json, + anon_sym_to_string, + anon_sym_to_float, + anon_sym_bash, + anon_sym_fish, + anon_sym_raw, + anon_sym_sh, + anon_sym_zsh, + anon_sym_random, + anon_sym_random_boolean, + anon_sym_random_float, + anon_sym_random_integer, + anon_sym_columns, + anon_sym_rows, + anon_sym_reverse, + [28124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1350), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1330), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1402), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1391), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1389), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1395), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1393), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1334), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1354), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28327] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28360] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28393] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1605), 1, + anon_sym_DOT_DOT, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1408), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1406), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1425), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1367), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1365), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1375), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1373), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1451), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28573] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_COLON, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1263), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_DOT_DOT, + ACTIONS(75), 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, + [28612] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28645] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_COLON, + STATE(764), 1, + sym_logic_operator, + STATE(765), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1311), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_DOT_DOT, + ACTIONS(75), 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, + [28684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1609), 1, + anon_sym_COLON, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1263), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [28722] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1609), 1, + anon_sym_COLON, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1311), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [28760] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_SEMI, + ACTIONS(1609), 1, + anon_sym_COLON, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1301), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym_identifier, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [28800] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28832] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1609), 1, + anon_sym_COLON, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1286), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [28870] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(577), 1, + sym_logic_operator, + STATE(579), 1, + sym_math_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28902] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [28932] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1611), 1, + anon_sym_COLON, + STATE(552), 1, + sym_math_operator, STATE(712), 1, - sym_else, - STATE(570), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1311), 2, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [641] = 7, + anon_sym_DOT_DOT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [28968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2182), 1, - anon_sym_else, - STATE(586), 1, - sym_else, - STATE(564), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, + ACTIONS(1611), 1, + anon_sym_COLON, + STATE(552), 1, + sym_math_operator, + STATE(712), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1263), 2, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [719] = 7, + anon_sym_DOT_DOT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29034] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1613), 1, + anon_sym_COLON, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1263), 2, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29070] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [29100] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(552), 1, + sym_math_operator, + STATE(712), 1, + sym_logic_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT_DOT, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [29162] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(552), 1, + sym_math_operator, + STATE(712), 1, + sym_logic_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29192] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29222] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 14, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29252] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1613), 1, + anon_sym_COLON, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1311), 2, + anon_sym_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29288] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(552), 1, + sym_math_operator, + STATE(712), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 14, + sym_identifier, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29318] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_COLON, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1263), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29354] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(730), 1, + sym_math_operator, + STATE(731), 1, + sym_logic_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 14, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [29384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1619), 1, + anon_sym_DOT_DOT, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + anon_sym_DOT_DOT, + STATE(552), 1, + sym_math_operator, + STATE(712), 1, + sym_logic_operator, + ACTIONS(1269), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1267), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29448] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1617), 1, + anon_sym_COLON, + STATE(553), 1, + sym_math_operator, + STATE(699), 1, + sym_logic_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1311), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29484] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1623), 1, + sym_identifier, + ACTIONS(1625), 1, + anon_sym_COLON, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29519] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1629), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29554] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [29583] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 13, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [29612] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1631), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29647] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1633), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29682] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1635), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29717] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_RPAREN, + ACTIONS(1637), 1, + anon_sym_COLON, + STATE(739), 1, + sym_logic_operator, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29752] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1639), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29787] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(739), 1, + sym_logic_operator, + STATE(740), 1, + sym_math_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 1, + anon_sym_RPAREN, + ACTIONS(1637), 1, + anon_sym_COLON, + STATE(739), 1, + sym_logic_operator, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29851] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(739), 1, + sym_logic_operator, + STATE(740), 1, + sym_math_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29880] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1641), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29915] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 1, + anon_sym_EQ_GT, + ACTIONS(1627), 1, + anon_sym_COLON, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29950] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1643), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [29985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_identifier, + ACTIONS(1625), 1, + anon_sym_COLON, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30020] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1625), 1, + anon_sym_COLON, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30055] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1645), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30090] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(1309), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1307), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30119] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1647), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30154] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1649), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30189] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(1299), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1297), 13, + sym_identifier, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30218] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1651), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1653), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30288] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1655), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30323] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1657), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30358] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1659), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30393] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + anon_sym_EQ_GT, + ACTIONS(1627), 1, + anon_sym_COLON, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30428] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1661), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30463] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1663), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30498] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1665), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30533] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1667), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30568] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1669), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30603] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1671), 1, + anon_sym_EQ_GT, + STATE(632), 1, + sym_logic_operator, + STATE(641), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30638] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1673), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30673] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1675), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30708] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1625), 1, + anon_sym_COLON, + ACTIONS(1677), 1, + sym_identifier, + STATE(706), 1, + sym_logic_operator, + STATE(708), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30743] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 1, + anon_sym_COLON, + STATE(739), 1, + sym_logic_operator, + STATE(740), 1, + sym_math_operator, + ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(71), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(75), 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, + [30775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1679), 1, + anon_sym_RPAREN, + ACTIONS(1336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1334), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(1336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1334), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(1336), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1334), 12, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30850] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(1500), 1, anon_sym_elseif, - ACTIONS(2182), 1, + ACTIONS(1685), 1, anon_sym_else, - STATE(584), 1, + STATE(781), 1, sym_else, - STATE(570), 2, + STATE(874), 2, sym_else_if, aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - anon_sym_LBRACE, + ACTIONS(1249), 3, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [797] = 20, + [30875] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, sym_identifier, - ACTIONS(1262), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_LPAREN, - ACTIONS(1268), 1, - sym_integer, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1282), 1, - anon_sym_EQ_GT, - ACTIONS(1288), 1, - anon_sym_table, - ACTIONS(2124), 1, - anon_sym_PIPE, - STATE(538), 1, - sym__built_in_function_name, - STATE(565), 1, - aux_sym_match_repeat1, - STATE(962), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1271), 2, - sym_float, - sym_string, - ACTIONS(1274), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, + ACTIONS(1500), 1, + anon_sym_elseif, + ACTIONS(1685), 1, + anon_sym_else, + STATE(775), 1, + sym_else, + STATE(506), 2, + sym_else_if, + aux_sym_if_else_repeat1, ACTIONS(1257), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1291), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [901] = 7, + [30900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2174), 1, - anon_sym_else, - STATE(712), 1, - sym_else, - STATE(572), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1138), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, + ACTIONS(1687), 1, sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_elseif, - ACTIONS(2180), 1, - anon_sym_else, - STATE(793), 1, - sym_else, - STATE(562), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1901), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1057] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_elseif, - ACTIONS(2176), 1, - anon_sym_else, - STATE(584), 1, - sym_else, - STATE(572), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1135] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(565), 1, - aux_sym_match_repeat1, - STATE(962), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - ACTIONS(1294), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_elseif, - STATE(570), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1955), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1957), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1312] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2130), 1, - anon_sym_COMMA, - ACTIONS(2166), 1, - anon_sym_COLON, - STATE(725), 1, - sym_logic_operator, - STATE(726), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1938), 8, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1940), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1397] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_elseif, - STATE(572), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1955), 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_EQ_GT, - anon_sym_PIPE, - ACTIONS(1957), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1470] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2130), 1, - anon_sym_COMMA, - ACTIONS(2170), 1, - anon_sym_COLON, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1938), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1940), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2114), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2018), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2025), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2006), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2029), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2058), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [1962] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2190), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2064] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2170), 1, - anon_sym_COLON, - ACTIONS(2196), 1, - anon_sym_COMMA, - STATE(814), 1, - sym_math_operator, - STATE(815), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(2194), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - ACTIONS(2192), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2148] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2198), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(580), 1, - aux_sym_list_repeat1, - STATE(581), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2122), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2050), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2386] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2200), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2118), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2624] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2002), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_SEMI, - ACTIONS(1964), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1966), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2110), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2054), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [2898] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2202), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2046), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2084), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2086), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2014), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3204] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2204), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_LBRACE, - ACTIONS(2210), 1, - anon_sym_LPAREN, - ACTIONS(2213), 1, - sym_integer, - ACTIONS(2222), 1, - anon_sym_LBRACK, - ACTIONS(2225), 1, - anon_sym_RBRACK, - ACTIONS(2227), 1, - anon_sym_EQ_GT, - ACTIONS(2230), 1, - anon_sym_PIPE, - ACTIONS(2233), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(596), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(2216), 2, - sym_float, - sym_string, - ACTIONS(2219), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2236), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2010), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2034), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2036), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3442] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2239), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(585), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3544] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - ACTIONS(2241), 1, - anon_sym_RBRACK, - STATE(364), 1, - sym__built_in_function_name, - STATE(581), 1, - sym_expression, - STATE(592), 1, - aux_sym_list_repeat1, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_elseif, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2042), 48, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2243), 1, - anon_sym_DOT_DOT, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1913), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - 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_EQ_GT, - ACTIONS(1915), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3787] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1930), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - ACTIONS(1932), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3858] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1913), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - ACTIONS(1915), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [3929] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2245), 1, - anon_sym_COLON, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1951), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1953), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4010] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2245), 1, - anon_sym_COLON, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1947), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1949), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4091] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(855), 1, - sym_math_operator, - STATE(856), 1, - sym_logic_operator, - ACTIONS(1934), 18, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - ACTIONS(1936), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4162] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(966), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(394), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4354] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(121), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4450] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(37), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4546] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(38), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4642] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(39), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4738] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(111), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4834] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(490), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [4930] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(139), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5026] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(88), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5122] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(41), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5218] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(449), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5314] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(452), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5410] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(385), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5506] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(42), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5602] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(446), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5698] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(148), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5794] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(937), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5890] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(147), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [5986] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(55), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6082] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(145), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6178] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(57), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6274] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(917), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6370] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(554), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6466] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(26), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6562] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(441), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6658] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(40), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6754] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(61), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(63), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [6946] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(64), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7042] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(66), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7138] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(67), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7234] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(65), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7330] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(434), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7426] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(12), 1, - sym_expression, - STATE(201), 1, - sym__built_in_function_name, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7522] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2265), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(952), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7618] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(143), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7714] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(967), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(79), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [7906] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(925), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8002] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(363), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8098] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(46), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8194] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(412), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(80), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8386] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(52), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8482] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(74), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8578] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(922), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8674] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(969), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8770] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(970), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8866] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(921), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [8962] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(944), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9058] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(963), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9154] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(382), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9250] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(964), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9346] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(413), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9442] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(59), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9538] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(454), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9634] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(483), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9730] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(104), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9826] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(471), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [9922] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(346), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10018] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(62), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10114] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(604), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10210] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(2), 1, - sym_expression, - STATE(168), 1, - sym__built_in_function_name, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10306] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2287), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(941), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10402] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(96), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10498] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(108), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10594] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(109), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10690] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(110), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10786] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(112), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10882] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(115), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [10978] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(101), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11074] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(895), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11170] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2295), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(939), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11266] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(509), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11362] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2297), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(940), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11458] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2299), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(965), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11554] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(116), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2034), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2036), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2029), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11782] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(92), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2025), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [11944] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(119), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(144), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2018), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12202] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(898), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2014), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2010), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2006), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2002), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2110), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12628] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(142), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12724] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(915), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12820] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(514), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [12916] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(918), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13012] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(916), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13108] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(137), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13204] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(35), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13300] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(106), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13396] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1790), 1, - anon_sym_EQ_GT, - ACTIONS(1812), 1, - anon_sym_table, - ACTIONS(2263), 1, - sym_identifier, - STATE(364), 1, - sym__built_in_function_name, - STATE(913), 1, - sym_expression, - STATE(1052), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13492] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(976), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13588] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(365), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13684] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(84), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13780] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(464), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2050), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [13942] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(82), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14038] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(107), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14134] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2267), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(947), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14230] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(5), 1, - sym_expression, - STATE(195), 1, - sym__built_in_function_name, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14326] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(134), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2042), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14488] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(146), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14584] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(152), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14680] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(151), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14776] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(76), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14872] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(149), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [14968] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(47), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15064] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(551), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15160] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(552), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15256] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(504), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15352] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(548), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15448] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(48), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15544] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(3), 1, - sym_expression, - STATE(182), 1, - sym__built_in_function_name, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15640] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(49), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15736] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(507), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15832] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(510), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [15928] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(505), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16024] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(90), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16120] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(370), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16216] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(136), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16312] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(367), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16408] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(497), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16504] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(50), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16600] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(132), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16696] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(141), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16792] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(150), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16888] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(535), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [16984] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(103), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(98), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17176] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(19), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17272] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(499), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17368] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(43), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17464] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(20), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17560] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(436), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17656] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(51), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17752] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(36), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17848] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(126), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [17944] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(128), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(53), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18136] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(125), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18232] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym__built_in_function_name, - STATE(373), 1, - sym_expression, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18328] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(358), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18424] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(123), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18520] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(122), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18616] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(919), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18712] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(933), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18808] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(929), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [18904] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_EQ_GT, - ACTIONS(2281), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(923), 1, - sym_expression, - STATE(1053), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19000] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(34), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2054), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19162] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(45), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(9), 1, - sym_expression, - STATE(201), 1, - sym__built_in_function_name, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19354] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(383), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19450] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2301), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(972), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19546] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(422), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19642] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(439), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19738] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(450), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19834] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2303), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(945), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [19930] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(468), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2114), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20092] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(930), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20188] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(928), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20284] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2269), 1, - sym_identifier, - ACTIONS(2271), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(931), 1, - sym_expression, - STATE(1057), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20380] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(60), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20476] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(978), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20572] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(72), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20668] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(68), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20764] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(87), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20860] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(399), 1, - anon_sym_EQ_GT, - ACTIONS(421), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym__built_in_function_name, - STATE(435), 1, - sym_expression, - STATE(1071), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(423), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [20956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2084), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2086), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21022] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(432), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21118] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(398), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21214] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(184), 1, - sym__built_in_function_name, - STATE(431), 1, - sym_expression, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21310] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(1930), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - 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_EQ_GT, - ACTIONS(1932), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21380] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(91), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1887), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21542] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(113), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21638] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(791), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21734] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(924), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21830] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(932), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [21926] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(926), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22022] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(539), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22118] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(533), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22214] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(89), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22310] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(216), 1, - sym__built_in_function_name, - STATE(456), 1, - sym_expression, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2122), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(221), 1, - sym__built_in_function_name, - STATE(528), 1, - sym_expression, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22568] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(56), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22664] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(58), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22760] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(7), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2118), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [22922] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2134), 1, - anon_sym_COLON, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1947), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1949), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23002] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(78), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23098] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(81), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23194] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(558), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23290] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_EQ_GT, - ACTIONS(1905), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(549), 1, - sym_expression, - STATE(1055), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23386] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(557), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23482] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(556), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23578] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(1934), 17, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - 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_EQ_GT, - ACTIONS(1936), 39, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_DASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(496), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23744] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DASH, - ACTIONS(2134), 1, - anon_sym_COLON, - STATE(829), 1, - sym_logic_operator, - STATE(830), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 4, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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(1951), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - ACTIONS(1953), 36, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_PIPE, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23824] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(22), 1, - sym_expression, - STATE(214), 1, - sym__built_in_function_name, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [23920] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(187), 1, - anon_sym_EQ_GT, - ACTIONS(209), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(195), 1, - sym__built_in_function_name, - STATE(425), 1, - sym_expression, - STATE(1054), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(211), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24016] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(83), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24112] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(75), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24208] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(73), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24304] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(140), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24400] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(1893), 1, - anon_sym_EQ_GT, - ACTIONS(1895), 1, - anon_sym_table, - STATE(364), 1, - sym__built_in_function_name, - STATE(555), 1, - sym_expression, - STATE(1192), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1814), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24496] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(71), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24592] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(70), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24688] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(943), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24784] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(809), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24880] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(816), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [24976] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(602), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25072] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(818), 1, - sym_expression, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25168] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(44), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25264] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(93), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25360] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2311), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(946), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25456] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(485), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25552] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(119), 1, - anon_sym_EQ_GT, - ACTIONS(141), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(10), 1, - sym_expression, - STATE(182), 1, - sym__built_in_function_name, - STATE(1040), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(143), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(349), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25744] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(85), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25840] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(86), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [25936] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(912), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26032] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(910), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26128] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2289), 1, - sym_identifier, - ACTIONS(2291), 1, - anon_sym_EQ_GT, - ACTIONS(2293), 1, - anon_sym_table, - STATE(352), 1, - sym__built_in_function_name, - STATE(911), 1, - sym_expression, - STATE(1059), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1907), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26224] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(356), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26320] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(351), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26416] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(83), 1, - anon_sym_EQ_GT, - ACTIONS(107), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(168), 1, - sym__built_in_function_name, - STATE(355), 1, - sym_expression, - STATE(1201), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(109), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26512] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2313), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(959), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26608] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(292), 1, - anon_sym_EQ_GT, - ACTIONS(314), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(214), 1, - sym__built_in_function_name, - STATE(453), 1, - sym_expression, - STATE(1234), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26704] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(927), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26800] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(953), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26896] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(957), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [26992] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2315), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(956), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27088] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(94), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27184] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(605), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27280] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(607), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27376] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(606), 1, - sym_expression, - STATE(1056), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(95), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27568] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(69), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27664] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(97), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27760] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(99), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, - anon_sym_SEMI, - ACTIONS(1964), 10, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(1966), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [27924] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2257), 1, - sym_identifier, - ACTIONS(2259), 1, - anon_sym_EQ_GT, - ACTIONS(2261), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(975), 1, - sym_expression, - STATE(1119), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(977), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28020] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(54), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28116] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(117), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28212] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(478), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28308] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(118), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28404] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1296), 1, - sym_identifier, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1312), 1, - anon_sym_EQ_GT, - ACTIONS(1314), 1, - anon_sym_table, - STATE(538), 1, - sym__built_in_function_name, - STATE(954), 1, - sym_expression, - STATE(1044), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(114), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28596] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(102), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28692] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(487), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28788] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(138), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28884] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(120), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [28980] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2317), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(955), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29076] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_table, - STATE(462), 1, - sym__built_in_function_name, - STATE(935), 1, - sym_expression, - STATE(1058), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(2275), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29172] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(124), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29268] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(127), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29364] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(129), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29460] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(130), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29556] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(131), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29652] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(457), 1, - anon_sym_EQ_GT, - ACTIONS(479), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(11), 1, - sym_expression, - STATE(216), 1, - sym__built_in_function_name, - STATE(1033), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(481), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29748] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(133), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29844] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(135), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [29940] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(498), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30036] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1298), 1, - anon_sym_LBRACE, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_integer, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(2249), 1, - anon_sym_EQ_GT, - ACTIONS(2251), 1, - anon_sym_table, - ACTIONS(2319), 1, - sym_identifier, - STATE(538), 1, - sym__built_in_function_name, - STATE(950), 1, - sym_expression, - STATE(1072), 1, - sym_identifier_list, - ACTIONS(1304), 2, - sym_float, - sym_string, - ACTIONS(1306), 2, - anon_sym_true, - anon_sym_false, - STATE(899), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(906), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(907), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30132] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(105), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30228] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2255), 1, - anon_sym_table, - STATE(503), 1, - sym_expression, - STATE(538), 1, - sym__built_in_function_name, - STATE(1090), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(1316), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30324] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - sym_integer, - ACTIONS(65), 1, - anon_sym_LBRACK, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(175), 1, - anon_sym_table, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1249), 1, - anon_sym_LBRACE, - STATE(4), 1, - sym_expression, - STATE(184), 1, - sym__built_in_function_name, - STATE(1126), 1, - sym_identifier_list, - ACTIONS(61), 2, - sym_float, - sym_string, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(410), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(407), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(409), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(177), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30420] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - anon_sym_LPAREN, - ACTIONS(11), 1, - sym_integer, - ACTIONS(17), 1, - anon_sym_LBRACK, - ACTIONS(23), 1, - anon_sym_EQ_GT, - ACTIONS(45), 1, - anon_sym_PIPE, - ACTIONS(47), 1, - anon_sym_table, - ACTIONS(1145), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - sym_identifier, - STATE(77), 1, - sym_expression, - STATE(221), 1, - sym__built_in_function_name, - STATE(1172), 1, - sym_identifier_list, - ACTIONS(13), 2, - sym_float, - sym_string, - ACTIONS(15), 2, - anon_sym_true, - anon_sym_false, - STATE(473), 2, - sym__context_defined_function, - sym_built_in_function, - STATE(481), 5, - sym_boolean, - sym_list, - sym_map, - sym_table, - sym_function, - STATE(466), 6, - sym__expression_kind, - sym_value, - sym_index, - sym_math, - sym_logic, - sym_function_call, - ACTIONS(49), 30, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2323), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2321), 47, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_if, - anon_sym_match, - anon_sym_while, - anon_sym_for, - anon_sym_transform, - anon_sym_filter, - anon_sym_find, - anon_sym_remove, - anon_sym_reduce, - anon_sym_select, - anon_sym_insert, - anon_sym_async, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 8, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2325), 35, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2327), 35, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2331), 35, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2335), 35, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2341), 7, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_float, - sym_string, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - ACTIONS(2339), 35, - sym_identifier, - sym_integer, - anon_sym_true, - anon_sym_false, - anon_sym_table, - anon_sym_assert, - anon_sym_assert_equal, - anon_sym_download, - anon_sym_help, - anon_sym_length, - anon_sym_output, - anon_sym_output_error, - anon_sym_type, - anon_sym_append, - anon_sym_metadata, - anon_sym_move, - anon_sym_read, - anon_sym_workdir, - anon_sym_write, - anon_sym_from_json, - anon_sym_to_json, - anon_sym_to_string, - anon_sym_to_float, - anon_sym_bash, - anon_sym_fish, - anon_sym_raw, - anon_sym_sh, - anon_sym_zsh, - anon_sym_random, - anon_sym_random_boolean, - anon_sym_random_float, - anon_sym_random_integer, - anon_sym_columns, - anon_sym_rows, - anon_sym_reverse, - [30829] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2098), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2066), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2064), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30920] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2343), 1, - anon_sym_DOT_DOT, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2072), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2076), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2080), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1996), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1994), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31071] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2090), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2094), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2060), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2104), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2084), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31278] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31311] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 1, - anon_sym_COLON, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1947), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(73), 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, - [31350] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2345), 1, - anon_sym_COLON, - STATE(842), 1, - sym_math_operator, - STATE(843), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1951), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(73), 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, - [31389] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31421] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, - anon_sym_SEMI, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1964), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 6, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31461] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 16, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31493] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1926), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31531] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31569] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - anon_sym_COLON, - STATE(700), 1, - sym_math_operator, - STATE(702), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - sym_identifier, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31607] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31637] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 1, - anon_sym_DOT_DOT, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31731] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31767] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COLON, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31803] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31833] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COLON, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - anon_sym_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_DOT_DOT, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31901] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31931] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31961] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [31997] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_COLON, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1947), 2, - sym_identifier, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32033] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32063] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_COLON, - STATE(764), 1, - sym_math_operator, - STATE(765), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1951), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32099] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32129] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(797), 1, - sym_math_operator, - STATE(798), 1, - sym_logic_operator, - ACTIONS(1915), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1913), 14, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32159] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(779), 1, - sym_math_operator, - STATE(780), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 14, - sym_identifier, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32189] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2363), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32253] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2369), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32323] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2371), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32358] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2373), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32393] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_EQ_GT, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32428] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2375), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32492] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2377), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32527] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - sym_identifier, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32556] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2379), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32591] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2381), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32626] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2383), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32661] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2385), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32696] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2387), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32731] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32760] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(1932), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1930), 13, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32789] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2389), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32824] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2391), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32859] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_EQ_GT, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2393), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32929] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2395), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32964] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2397), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [32999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2399), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33034] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2401), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33069] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - anon_sym_RPAREN, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33104] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33139] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2405), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33174] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2407), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33209] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1951), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_COLON, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33244] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2409), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33279] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - anon_sym_RPAREN, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33314] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(1936), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1934), 13, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33343] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2411), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33378] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_COLON, - ACTIONS(2413), 1, - sym_identifier, - STATE(658), 1, - sym_math_operator, - STATE(661), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33413] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2415), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33448] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - anon_sym_COLON, - ACTIONS(2417), 1, - anon_sym_EQ_GT, - STATE(850), 1, - sym_math_operator, - STATE(851), 1, - sym_logic_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33483] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2403), 1, - anon_sym_COLON, - STATE(655), 1, - sym_logic_operator, - STATE(656), 1, - sym_math_operator, - ACTIONS(75), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(69), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(73), 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, - [33515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2419), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2421), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 1, - anon_sym_RPAREN, - ACTIONS(2070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2068), 12, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33590] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, - sym_identifier, - ACTIONS(2425), 1, - anon_sym_elseif, - ACTIONS(2427), 1, - anon_sym_else, - STATE(793), 1, - sym_else, - STATE(980), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1899), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33615] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(2425), 1, - anon_sym_elseif, - ACTIONS(2427), 1, - anon_sym_else, - STATE(712), 1, - sym_else, - STATE(981), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1885), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_elseif, - ACTIONS(1957), 2, - sym_identifier, - anon_sym_else, - STATE(981), 2, - sym_else_if, - aux_sym_if_else_repeat1, - ACTIONS(1955), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [33660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1768), 1, - anon_sym_RBRACE, - ACTIONS(2432), 1, - sym_identifier, - STATE(995), 1, + STATE(876), 1, aux_sym_map_repeat1, - [33673] = 3, + [30913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, - anon_sym_COMMA, - ACTIONS(2434), 2, + ACTIONS(1687), 1, sym_identifier, - anon_sym_PIPE, - [33684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 1, - anon_sym_COMMA, - ACTIONS(2438), 2, + ACTIONS(1689), 1, anon_sym_RBRACE, - sym_identifier, - [33695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_RBRACE, - ACTIONS(2432), 1, - sym_identifier, - STATE(986), 1, + STATE(888), 1, aux_sym_map_repeat1, - [33708] = 4, + [30926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(1691), 1, anon_sym_RBRACE, - STATE(992), 1, + STATE(888), 1, aux_sym_map_repeat1, - [33721] = 4, + [30939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, + ACTIONS(1687), 1, sym_identifier, - ACTIONS(2446), 1, + ACTIONS(1693), 1, + anon_sym_RBRACE, + STATE(877), 1, + aux_sym_map_repeat1, + [30952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1687), 1, + sym_identifier, + ACTIONS(1695), 1, + anon_sym_RBRACE, + STATE(888), 1, + aux_sym_map_repeat1, + [30965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1699), 1, anon_sym_PIPE, - STATE(993), 1, + STATE(887), 1, aux_sym_identifier_list_repeat1, - [33734] = 4, + [30978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2448), 1, - anon_sym_PIPE, - STATE(991), 1, - aux_sym_identifier_list_repeat1, - [33747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2450), 1, + ACTIONS(1703), 1, + anon_sym_COMMA, + ACTIONS(1701), 2, anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33760] = 4, + sym_identifier, + [30989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2452), 1, + ACTIONS(1140), 1, anon_sym_RBRACE, - STATE(989), 1, + ACTIONS(1687), 1, + sym_identifier, + STATE(879), 1, aux_sym_map_repeat1, - [33773] = 4, + [31002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(1697), 1, sym_identifier, - ACTIONS(2457), 1, + ACTIONS(1705), 1, anon_sym_PIPE, - STATE(991), 1, + STATE(884), 1, aux_sym_identifier_list_repeat1, - [33786] = 4, + [31015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2459), 1, + ACTIONS(1697), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(1707), 1, + anon_sym_PIPE, + STATE(887), 1, + aux_sym_identifier_list_repeat1, + [31028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_COMMA, + ACTIONS(1709), 2, + sym_identifier, + anon_sym_PIPE, + [31039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1713), 1, + anon_sym_PIPE, + STATE(880), 1, + aux_sym_identifier_list_repeat1, + [31052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1715), 1, + sym_identifier, + ACTIONS(1718), 1, + anon_sym_PIPE, + STATE(887), 1, + aux_sym_identifier_list_repeat1, + [31065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 1, + sym_identifier, + ACTIONS(1723), 1, anon_sym_RBRACE, - STATE(992), 1, + STATE(888), 1, aux_sym_map_repeat1, - [33799] = 4, + [31078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2464), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(991), 1, - aux_sym_identifier_list_repeat1, - [33812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 1, - sym_identifier, - ACTIONS(2466), 1, - anon_sym_PIPE, - STATE(988), 1, - aux_sym_identifier_list_repeat1, - [33825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2432), 1, - sym_identifier, - ACTIONS(2468), 1, - anon_sym_RBRACE, - STATE(992), 1, - aux_sym_map_repeat1, - [33838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(645), 1, + STATE(766), 1, sym_identifier_list, - [33848] = 3, + [31088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(732), 1, + STATE(667), 1, sym_identifier_list, - [33858] = 2, + [31098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 2, + ACTIONS(1595), 2, anon_sym_EQ_GT, anon_sym_from, - [33866] = 3, + [31106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1158), 1, + STATE(987), 1, sym_identifier_list, - [33876] = 3, + [31116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1718), 2, + sym_identifier, anon_sym_PIPE, - STATE(630), 1, - sym_identifier_list, - [33886] = 3, + [31124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(763), 1, + STATE(644), 1, sym_identifier_list, - [33896] = 3, + [31134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(572), 1, + sym_identifier_list, + [31144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(729), 1, + sym_identifier_list, + [31154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(926), 1, + sym_identifier_list, + [31164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(713), 1, + sym_identifier_list, + [31174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(1116), 1, + sym_identifier_list, + [31184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(747), 1, + sym_identifier_list, + [31194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(698), 1, + sym_identifier_list, + [31204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1603), 2, + anon_sym_EQ_GT, + anon_sym_from, + [31212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(614), 1, + sym_identifier_list, + [31222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(760), 1, + sym_identifier_list, + [31232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(658), 1, + sym_identifier_list, + [31242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(1032), 1, + sym_identifier_list, + [31252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(995), 1, + sym_identifier_list, + [31262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_identifier_list, + [31272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + anon_sym_PIPE, + STATE(653), 1, + sym_identifier_list, + [31282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_PIPE, + STATE(930), 1, + sym_identifier_list, + [31292] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, STATE(1084), 1, sym_identifier_list, - [33906] = 3, + [31302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(828), 1, + STATE(581), 1, sym_identifier_list, - [33916] = 3, + [31312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(659), 1, + STATE(743), 1, sym_identifier_list, - [33926] = 3, + [31322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(709), 1, + STATE(721), 1, sym_identifier_list, - [33936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(662), 1, - sym_identifier_list, - [33946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(804), 1, - sym_identifier_list, - [33956] = 3, + [31332] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1038), 1, + STATE(923), 1, sym_identifier_list, - [33966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(728), 1, - sym_identifier_list, - [33976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(796), 1, - sym_identifier_list, - [33986] = 3, + [31342] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1108), 1, + STATE(992), 1, sym_identifier_list, - [33996] = 3, + [31352] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1138), 1, + STATE(1113), 1, sym_identifier_list, - [34006] = 3, + [31362] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1075), 1, + STATE(962), 1, sym_identifier_list, - [34016] = 3, + [31372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(751), 1, - sym_identifier_list, - [34026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(788), 1, - sym_identifier_list, - [34036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(832), 1, - sym_identifier_list, - [34046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1063), 1, - sym_identifier_list, - [34056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 2, - sym_identifier, - anon_sym_PIPE, - [34064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1123), 1, - sym_identifier_list, - [34074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1150), 1, - sym_identifier_list, - [34084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 2, - anon_sym_EQ_GT, - anon_sym_from, - [34092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 2, + ACTIONS(1727), 2, anon_sym_RBRACE, sym_identifier, - [34100] = 3, + [31380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1725), 1, anon_sym_PIPE, - STATE(619), 1, + STATE(711), 1, sym_identifier_list, - [34110] = 3, + [31390] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_PIPE, - STATE(1112), 1, + STATE(950), 1, sym_identifier_list, - [34120] = 3, + [31400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1067), 1, - sym_identifier_list, - [34130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1049), 1, - sym_identifier_list, - [34140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(778), 1, - sym_identifier_list, - [34150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(844), 1, - sym_identifier_list, - [34160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE, - STATE(1218), 1, - sym_identifier_list, - [34170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(854), 1, - sym_identifier_list, - [34180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(841), 1, - sym_identifier_list, - [34190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - anon_sym_PIPE, - STATE(812), 1, - sym_identifier_list, - [34200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_EQ_GT, - [34207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 1, - sym_identifier, - [34214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_in, - [34221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, - anon_sym_from, - [34228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 1, - sym_identifier, - [34235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2484), 1, - anon_sym_from, - [34242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, - anon_sym_in, - [34249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 1, - anon_sym_EQ_GT, - [34256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, - anon_sym_in, - [34263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 1, + ACTIONS(1729), 1, anon_sym_into, - [34270] = 2, + [31407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_in, - [34277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_EQ_GT, - [34284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - anon_sym_in, - [34291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 1, - anon_sym_in, - [34298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_in, - [34305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, + ACTIONS(1731), 1, anon_sym_from, - [34312] = 2, + [31414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, + ACTIONS(1733), 1, anon_sym_from, - [34319] = 2, + [31421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_in, - [34326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, - anon_sym_in, - [34333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 1, - anon_sym_EQ_GT, - [34340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2514), 1, - anon_sym_EQ_GT, - [34347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 1, - anon_sym_EQ_GT, - [34354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2518), 1, - anon_sym_EQ_GT, - [34361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 1, - anon_sym_EQ_GT, - [34368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2522), 1, - anon_sym_EQ_GT, - [34375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 1, - anon_sym_EQ_GT, - [34382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_EQ_GT, - [34389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 1, - sym_identifier, - [34396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 1, - sym_identifier, - [34403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - sym_identifier, - [34410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 1, - anon_sym_from, - [34417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - sym_identifier, - [34424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 1, - sym_identifier, - [34431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, + ACTIONS(1735), 1, anon_sym_into, - [34438] = 2, + [31428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(1737), 1, anon_sym_from, - [34445] = 2, + [31435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_in, - [34452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 1, - anon_sym_in, - [34459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_in, - [34466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, + ACTIONS(1739), 1, anon_sym_EQ_GT, - [34473] = 2, + [31442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, - anon_sym_EQ_GT, - [34480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, + ACTIONS(1741), 1, anon_sym_in, - [34487] = 2, + [31449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 1, + ACTIONS(1743), 1, + anon_sym_in, + [31456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 1, anon_sym_from, - [34494] = 2, + [31463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(1747), 1, + anon_sym_in, + [31470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1749), 1, anon_sym_from, - [34501] = 2, + [31477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(1751), 1, sym_identifier, - [34508] = 2, + [31484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(1753), 1, + anon_sym_EQ_GT, + [31491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_in, + [31498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + anon_sym_in, + [31505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1759), 1, + anon_sym_in, + [31512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1761), 1, + anon_sym_in, + [31519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 1, + sym_identifier, + [31526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_in, + [31533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1767), 1, + anon_sym_in, + [31540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + sym_identifier, + [31547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_in, + [31554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1773), 1, + sym_identifier, + [31561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + sym_identifier, + [31568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1777), 1, + anon_sym_EQ_GT, + [31575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + sym_identifier, + [31582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + sym_identifier, + [31589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_in, + [31596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1785), 1, + anon_sym_from, + [31603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + anon_sym_from, + [31610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + anon_sym_EQ_GT, + [31617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1791), 1, + anon_sym_EQ_GT, + [31624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1793), 1, + anon_sym_from, + [31631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + anon_sym_in, + [31638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_in, + [31645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_in, + [31652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_in, + [31659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1803), 1, + anon_sym_in, + [31666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_in, + [31673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 1, + anon_sym_from, + [31680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1809), 1, + anon_sym_from, + [31687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + sym_identifier, + [31694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1813), 1, + anon_sym_in, + [31701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1815), 1, + anon_sym_in, + [31708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + sym_identifier, + [31715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym_in, + [31722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + anon_sym_in, + [31729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_in, + [31736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_EQ_GT, + [31743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1827), 1, anon_sym_into, - [34515] = 2, + [31750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 1, - anon_sym_in, - [34522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2566), 1, - sym_identifier, - [34529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2568), 1, - anon_sym_in, - [34536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2570), 1, - anon_sym_in, - [34543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2572), 1, - sym_identifier, - [34550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2574), 1, - anon_sym_in, - [34557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2576), 1, - anon_sym_from, - [34564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_from, - [34571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2580), 1, - anon_sym_in, - [34578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2582), 1, - anon_sym_in, - [34585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2584), 1, - anon_sym_in, - [34592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2586), 1, - sym_identifier, - [34599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2588), 1, - anon_sym_EQ_GT, - [34606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, + ACTIONS(1829), 1, anon_sym_into, - [34613] = 2, + [31757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_in, - [34620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - anon_sym_into, - [34627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2596), 1, - anon_sym_in, - [34634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - anon_sym_in, - [34641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 1, - anon_sym_in, - [34648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_in, - [34655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2604), 1, - sym_identifier, - [34662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 1, - sym_identifier, - [34669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_in, - [34676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 1, - sym_identifier, - [34683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, - sym_identifier, - [34690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2614), 1, - anon_sym_from, - [34697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2616), 1, - anon_sym_into, - [34704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2618), 1, - sym_identifier, - [34711] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2620), 1, - anon_sym_in, - [34718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_in, - [34725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2624), 1, - anon_sym_from, - [34732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - sym_identifier, - [34739] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2628), 1, - anon_sym_in, - [34746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_from, - [34753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2632), 1, - anon_sym_from, - [34760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 1, - anon_sym_in, - [34767] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2636), 1, - sym_identifier, - [34774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 1, - anon_sym_in, - [34781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2640), 1, - anon_sym_EQ, - [34788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2642), 1, - anon_sym_in, - [34795] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym_in, - [34802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 1, + ACTIONS(1831), 1, anon_sym_EQ_GT, - [34809] = 2, + [31764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - sym_identifier, - [34816] = 2, + ACTIONS(1833), 1, + anon_sym_in, + [31771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - sym_identifier, - [34823] = 2, + ACTIONS(1835), 1, + anon_sym_in, + [31778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, - sym_identifier, - [34830] = 2, + ACTIONS(1837), 1, + anon_sym_in, + [31785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 1, - anon_sym_from, - [34837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2656), 1, - sym_identifier, - [34844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2658), 1, - sym_identifier, - [34851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2660), 1, + ACTIONS(1839), 1, anon_sym_EQ_GT, - [34858] = 2, + [31792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2662), 1, + ACTIONS(1841), 1, anon_sym_in, - [34865] = 2, + [31799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 1, - anon_sym_in, - [34872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2666), 1, - anon_sym_to, - [34879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2668), 1, - anon_sym_in, - [34886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, - anon_sym_in, - [34893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - anon_sym_from, - [34900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - anon_sym_in, - [34907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2676), 1, - sym_identifier, - [34914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2678), 1, - anon_sym_in, - [34921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 1, - anon_sym_from, - [34928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_in, - [34935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - anon_sym_from, - [34942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - anon_sym_in, - [34949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2688), 1, - anon_sym_in, - [34956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 1, - sym_identifier, - [34963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 1, - sym_identifier, - [34970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 1, - sym_identifier, - [34977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_in, - [34984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 1, - sym_identifier, - [34991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 1, - anon_sym_in, - [34998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_in, - [35005] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_in, - [35012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2706), 1, - sym_identifier, - [35019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2708), 1, - anon_sym_from, - [35026] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2710), 1, - anon_sym_in, - [35033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_from, - [35040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 1, - anon_sym_in, - [35047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - sym_identifier, - [35054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_in, - [35061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2720), 1, - sym_identifier, - [35068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2722), 1, - sym_identifier, - [35075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_from, - [35082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 1, - sym_identifier, - [35089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 1, - sym_identifier, - [35096] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_in, - [35103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_in, - [35110] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2734), 1, - anon_sym_from, - [35117] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2736), 1, - anon_sym_in, - [35124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_in, - [35131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2740), 1, - anon_sym_from, - [35138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2742), 1, - anon_sym_in, - [35145] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - sym_identifier, - [35152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2746), 1, - sym_identifier, - [35159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2748), 1, - sym_identifier, - [35166] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2750), 1, - sym_identifier, - [35173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_EQ_GT, - [35180] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2754), 1, - sym_identifier, - [35187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2756), 1, - sym_identifier, - [35194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_in, - [35201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 1, - anon_sym_in, - [35208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, + ACTIONS(1843), 1, ts_builtin_sym_end, - [35215] = 2, + [31806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(1845), 1, + ts_builtin_sym_end, + [31813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + anon_sym_in, + [31820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + sym_identifier, + [31827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + sym_identifier, + [31834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1853), 1, anon_sym_from, - [35222] = 2, + [31841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_in, - [35229] = 2, + ACTIONS(1855), 1, + sym_identifier, + [31848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(1857), 1, + sym_identifier, + [31855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, anon_sym_from, - [35236] = 2, + [31862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 1, - anon_sym_in, - [35243] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - sym_identifier, - [35250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_in, - [35257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - anon_sym_in, - [35264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2778), 1, - sym_identifier, - [35271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2780), 1, - sym_identifier, - [35278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_in, - [35285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, - sym_identifier, - [35292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - sym_identifier, - [35299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 1, - anon_sym_in, - [35306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2790), 1, + ACTIONS(1861), 1, anon_sym_into, - [35313] = 2, + [31869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(1863), 1, + anon_sym_in, + [31876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, + anon_sym_in, + [31883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1867), 1, anon_sym_EQ_GT, - [35320] = 2, + [31890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_to, - [35327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 1, - sym_identifier, - [35334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_into, - [35341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 1, - sym_identifier, - [35348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2802), 1, - sym_identifier, - [35355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - anon_sym_into, - [35362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2806), 1, - sym_identifier, - [35369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - sym_identifier, - [35376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_EQ_GT, - [35383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 1, - anon_sym_in, - [35390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_to, - [35397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 1, - sym_identifier, - [35404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2818), 1, - sym_identifier, - [35411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 1, - sym_identifier, - [35418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - sym_identifier, - [35425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 1, - sym_identifier, - [35432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2826), 1, - sym_identifier, - [35439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_in, - [35446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_to, - [35453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, - sym_identifier, - [35460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2834), 1, - sym_identifier, - [35467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 1, - sym_identifier, - [35474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - sym_identifier, - [35481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 1, - sym_identifier, - [35488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - sym_identifier, - [35495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 1, + ACTIONS(1869), 1, anon_sym_from, - [35502] = 2, + [31897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, - anon_sym_to, - [35509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 1, - sym_identifier, - [35516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2850), 1, - sym_identifier, - [35523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 1, - sym_identifier, - [35530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2854), 1, - sym_identifier, - [35537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - sym_identifier, - [35544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2858), 1, - sym_identifier, - [35551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, + ACTIONS(1871), 1, anon_sym_in, - [35558] = 2, + [31904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_to, - [35565] = 2, + ACTIONS(1873), 1, + anon_sym_from, + [31911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(1875), 1, + anon_sym_from, + [31918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_in, + [31925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, sym_identifier, - [35572] = 2, + [31932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(1881), 1, + anon_sym_in, + [31939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + anon_sym_from, + [31946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1885), 1, + anon_sym_into, + [31953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1887), 1, + anon_sym_in, + [31960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 1, sym_identifier, - [35579] = 2, + [31967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(1891), 1, + anon_sym_in, + [31974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, sym_identifier, - [35586] = 2, + [31981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(1895), 1, sym_identifier, - [35593] = 2, + [31988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(1897), 1, + anon_sym_in, + [31995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, sym_identifier, - [35600] = 2, + [32002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(1901), 1, sym_identifier, - [35607] = 2, + [32009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(1903), 1, + anon_sym_in, + [32016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + anon_sym_in, + [32023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_in, + [32030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym_identifier, + [32037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, anon_sym_EQ_GT, - [35614] = 2, + [32044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(1913), 1, + anon_sym_in, + [32051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_from, + [32058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1917), 1, + anon_sym_in, + [32065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + sym_identifier, + [32072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 1, + anon_sym_in, + [32079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + sym_identifier, + [32086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + sym_identifier, + [32093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + sym_identifier, + [32100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 1, + sym_identifier, + [32107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_into, + [32114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1933), 1, + sym_identifier, + [32121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1935), 1, + sym_identifier, + [32128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + anon_sym_in, + [32135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + sym_identifier, + [32142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + sym_identifier, + [32149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1943), 1, + anon_sym_in, + [32156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1945), 1, + anon_sym_in, + [32163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1947), 1, + anon_sym_in, + [32170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1949), 1, + anon_sym_from, + [32177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_EQ, + [32184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1953), 1, + anon_sym_in, + [32191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + anon_sym_from, + [32198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1957), 1, + anon_sym_in, + [32205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, + sym_identifier, + [32212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 1, + anon_sym_in, + [32219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1963), 1, + sym_identifier, + [32226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1965), 1, + sym_identifier, + [32233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1967), 1, + anon_sym_in, + [32240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + sym_identifier, + [32247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1971), 1, + sym_identifier, + [32254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_in, + [32261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 1, + anon_sym_in, + [32268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 1, + anon_sym_in, + [32275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ_GT, + [32282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1981), 1, + anon_sym_in, + [32289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, + anon_sym_from, + [32296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_in, + [32303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + sym_identifier, + [32310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + anon_sym_in, + [32317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + sym_identifier, + [32324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1993), 1, + sym_identifier, + [32331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 1, + sym_identifier, + [32338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + sym_identifier, + [32345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, + sym_identifier, + [32352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_in, + [32359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_in, + [32366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_from, + [32373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 1, + anon_sym_from, + [32380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 1, + anon_sym_in, + [32387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2011), 1, + anon_sym_from, + [32394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2013), 1, + anon_sym_in, + [32401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 1, + sym_identifier, + [32408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2017), 1, + anon_sym_in, + [32415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2019), 1, + anon_sym_in, + [32422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 1, + sym_identifier, + [32429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2023), 1, + sym_identifier, + [32436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym_in, + [32443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2027), 1, + sym_identifier, + [32450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + sym_identifier, + [32457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 1, + anon_sym_in, + [32464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2033), 1, + anon_sym_into, + [32471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2035), 1, + anon_sym_in, + [32478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2037), 1, anon_sym_to, - [35621] = 2, + [32485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(2039), 1, sym_identifier, - [35628] = 2, + [32492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(2041), 1, sym_identifier, - [35635] = 2, + [32499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(2043), 1, + sym_identifier, + [32506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym_EQ_GT, + [32513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2047), 1, + sym_identifier, + [32520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2049), 1, + sym_identifier, + [32527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 1, + anon_sym_into, + [32534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_from, + [32541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, anon_sym_to, - [35642] = 2, + [32548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2057), 1, sym_identifier, - [35649] = 2, + [32555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(2059), 1, + sym_identifier, + [32562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2061), 1, + sym_identifier, + [32569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2063), 1, + sym_identifier, + [32576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2065), 1, + sym_identifier, + [32583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 1, + sym_identifier, + [32590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, anon_sym_to, - [35656] = 2, + [32597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, - sym_identifier, - [35663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2892), 1, + ACTIONS(2071), 1, anon_sym_to, - [35670] = 2, + [32604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2073), 1, sym_identifier, - [35677] = 2, + [32611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(2075), 1, + sym_identifier, + [32618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + sym_identifier, + [32625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2079), 1, + sym_identifier, + [32632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 1, + sym_identifier, + [32639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + sym_identifier, + [32646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + sym_identifier, + [32653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, anon_sym_to, - [35684] = 2, + [32660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(2089), 1, sym_identifier, - [35691] = 2, + [32667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(2091), 1, + sym_identifier, + [32674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + sym_identifier, + [32681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_in, + [32688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + sym_identifier, + [32695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2099), 1, + sym_identifier, + [32702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, + sym_identifier, + [32709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, anon_sym_to, - [35698] = 2, + [32716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(2105), 1, sym_identifier, - [35705] = 2, + [32723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, + ACTIONS(2107), 1, + sym_identifier, + [32730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2109), 1, + sym_identifier, + [32737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2111), 1, + anon_sym_from, + [32744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2113), 1, + sym_identifier, + [32751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2115), 1, + sym_identifier, + [32758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2117), 1, + anon_sym_from, + [32765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, anon_sym_to, - [35712] = 2, + [32772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2121), 1, sym_identifier, - [35719] = 2, + [32779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(2123), 1, sym_identifier, - [35726] = 2, + [32786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2125), 1, + anon_sym_to, + [32793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, sym_identifier, - [35733] = 2, + [32800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2129), 1, + anon_sym_to, + [32807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2131), 1, sym_identifier, - [35740] = 2, + [32814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, + ACTIONS(2133), 1, + anon_sym_to, + [32821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2135), 1, sym_identifier, - [35747] = 2, + [32828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(2137), 1, + anon_sym_to, + [32835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 1, + sym_identifier, + [32842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2141), 1, + anon_sym_to, + [32849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2143), 1, + sym_identifier, + [32856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_to, + [32863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + sym_identifier, + [32870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + sym_identifier, + [32877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2151), 1, + sym_identifier, + [32884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 1, + sym_identifier, + [32891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 1, + sym_identifier, + [32898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(555)] = 0, - [SMALL_STATE(556)] = 75, - [SMALL_STATE(557)] = 160, - [SMALL_STATE(558)] = 235, - [SMALL_STATE(559)] = 320, - [SMALL_STATE(560)] = 407, - [SMALL_STATE(561)] = 485, - [SMALL_STATE(562)] = 563, - [SMALL_STATE(563)] = 641, - [SMALL_STATE(564)] = 719, - [SMALL_STATE(565)] = 797, - [SMALL_STATE(566)] = 901, - [SMALL_STATE(567)] = 979, - [SMALL_STATE(568)] = 1057, - [SMALL_STATE(569)] = 1135, - [SMALL_STATE(570)] = 1239, - [SMALL_STATE(571)] = 1312, - [SMALL_STATE(572)] = 1397, - [SMALL_STATE(573)] = 1470, - [SMALL_STATE(574)] = 1554, - [SMALL_STATE(575)] = 1622, - [SMALL_STATE(576)] = 1690, - [SMALL_STATE(577)] = 1758, - [SMALL_STATE(578)] = 1826, - [SMALL_STATE(579)] = 1894, - [SMALL_STATE(580)] = 1962, - [SMALL_STATE(581)] = 2064, - [SMALL_STATE(582)] = 2148, - [SMALL_STATE(583)] = 2250, - [SMALL_STATE(584)] = 2318, - [SMALL_STATE(585)] = 2386, - [SMALL_STATE(586)] = 2488, - [SMALL_STATE(587)] = 2556, - [SMALL_STATE(588)] = 2624, - [SMALL_STATE(589)] = 2692, - [SMALL_STATE(590)] = 2762, - [SMALL_STATE(591)] = 2830, - [SMALL_STATE(592)] = 2898, - [SMALL_STATE(593)] = 3000, - [SMALL_STATE(594)] = 3068, - [SMALL_STATE(595)] = 3136, - [SMALL_STATE(596)] = 3204, - [SMALL_STATE(597)] = 3306, - [SMALL_STATE(598)] = 3374, - [SMALL_STATE(599)] = 3442, - [SMALL_STATE(600)] = 3544, - [SMALL_STATE(601)] = 3646, - [SMALL_STATE(602)] = 3714, - [SMALL_STATE(603)] = 3787, - [SMALL_STATE(604)] = 3858, - [SMALL_STATE(605)] = 3929, - [SMALL_STATE(606)] = 4010, - [SMALL_STATE(607)] = 4091, - [SMALL_STATE(608)] = 4162, - [SMALL_STATE(609)] = 4258, - [SMALL_STATE(610)] = 4354, - [SMALL_STATE(611)] = 4450, - [SMALL_STATE(612)] = 4546, - [SMALL_STATE(613)] = 4642, - [SMALL_STATE(614)] = 4738, - [SMALL_STATE(615)] = 4834, - [SMALL_STATE(616)] = 4930, - [SMALL_STATE(617)] = 5026, - [SMALL_STATE(618)] = 5122, - [SMALL_STATE(619)] = 5218, - [SMALL_STATE(620)] = 5314, - [SMALL_STATE(621)] = 5410, - [SMALL_STATE(622)] = 5506, - [SMALL_STATE(623)] = 5602, - [SMALL_STATE(624)] = 5698, - [SMALL_STATE(625)] = 5794, - [SMALL_STATE(626)] = 5890, - [SMALL_STATE(627)] = 5986, - [SMALL_STATE(628)] = 6082, - [SMALL_STATE(629)] = 6178, - [SMALL_STATE(630)] = 6274, - [SMALL_STATE(631)] = 6370, - [SMALL_STATE(632)] = 6466, - [SMALL_STATE(633)] = 6562, - [SMALL_STATE(634)] = 6658, - [SMALL_STATE(635)] = 6754, - [SMALL_STATE(636)] = 6850, - [SMALL_STATE(637)] = 6946, - [SMALL_STATE(638)] = 7042, - [SMALL_STATE(639)] = 7138, - [SMALL_STATE(640)] = 7234, - [SMALL_STATE(641)] = 7330, - [SMALL_STATE(642)] = 7426, - [SMALL_STATE(643)] = 7522, - [SMALL_STATE(644)] = 7618, - [SMALL_STATE(645)] = 7714, - [SMALL_STATE(646)] = 7810, - [SMALL_STATE(647)] = 7906, - [SMALL_STATE(648)] = 8002, - [SMALL_STATE(649)] = 8098, - [SMALL_STATE(650)] = 8194, - [SMALL_STATE(651)] = 8290, - [SMALL_STATE(652)] = 8386, - [SMALL_STATE(653)] = 8482, - [SMALL_STATE(654)] = 8578, - [SMALL_STATE(655)] = 8674, - [SMALL_STATE(656)] = 8770, - [SMALL_STATE(657)] = 8866, - [SMALL_STATE(658)] = 8962, - [SMALL_STATE(659)] = 9058, - [SMALL_STATE(660)] = 9154, - [SMALL_STATE(661)] = 9250, - [SMALL_STATE(662)] = 9346, - [SMALL_STATE(663)] = 9442, - [SMALL_STATE(664)] = 9538, - [SMALL_STATE(665)] = 9634, - [SMALL_STATE(666)] = 9730, - [SMALL_STATE(667)] = 9826, - [SMALL_STATE(668)] = 9922, - [SMALL_STATE(669)] = 10018, - [SMALL_STATE(670)] = 10114, - [SMALL_STATE(671)] = 10210, - [SMALL_STATE(672)] = 10306, - [SMALL_STATE(673)] = 10402, - [SMALL_STATE(674)] = 10498, - [SMALL_STATE(675)] = 10594, - [SMALL_STATE(676)] = 10690, - [SMALL_STATE(677)] = 10786, - [SMALL_STATE(678)] = 10882, - [SMALL_STATE(679)] = 10978, - [SMALL_STATE(680)] = 11074, - [SMALL_STATE(681)] = 11170, - [SMALL_STATE(682)] = 11266, - [SMALL_STATE(683)] = 11362, - [SMALL_STATE(684)] = 11458, - [SMALL_STATE(685)] = 11554, - [SMALL_STATE(686)] = 11650, - [SMALL_STATE(687)] = 11716, - [SMALL_STATE(688)] = 11782, - [SMALL_STATE(689)] = 11878, - [SMALL_STATE(690)] = 11944, - [SMALL_STATE(691)] = 12040, - [SMALL_STATE(692)] = 12136, - [SMALL_STATE(693)] = 12202, - [SMALL_STATE(694)] = 12298, - [SMALL_STATE(695)] = 12364, - [SMALL_STATE(696)] = 12430, - [SMALL_STATE(697)] = 12496, - [SMALL_STATE(698)] = 12562, - [SMALL_STATE(699)] = 12628, - [SMALL_STATE(700)] = 12724, - [SMALL_STATE(701)] = 12820, - [SMALL_STATE(702)] = 12916, - [SMALL_STATE(703)] = 13012, - [SMALL_STATE(704)] = 13108, - [SMALL_STATE(705)] = 13204, - [SMALL_STATE(706)] = 13300, - [SMALL_STATE(707)] = 13396, - [SMALL_STATE(708)] = 13492, - [SMALL_STATE(709)] = 13588, - [SMALL_STATE(710)] = 13684, - [SMALL_STATE(711)] = 13780, - [SMALL_STATE(712)] = 13876, - [SMALL_STATE(713)] = 13942, - [SMALL_STATE(714)] = 14038, - [SMALL_STATE(715)] = 14134, - [SMALL_STATE(716)] = 14230, - [SMALL_STATE(717)] = 14326, - [SMALL_STATE(718)] = 14422, - [SMALL_STATE(719)] = 14488, - [SMALL_STATE(720)] = 14584, - [SMALL_STATE(721)] = 14680, - [SMALL_STATE(722)] = 14776, - [SMALL_STATE(723)] = 14872, - [SMALL_STATE(724)] = 14968, - [SMALL_STATE(725)] = 15064, - [SMALL_STATE(726)] = 15160, - [SMALL_STATE(727)] = 15256, - [SMALL_STATE(728)] = 15352, - [SMALL_STATE(729)] = 15448, - [SMALL_STATE(730)] = 15544, - [SMALL_STATE(731)] = 15640, - [SMALL_STATE(732)] = 15736, - [SMALL_STATE(733)] = 15832, - [SMALL_STATE(734)] = 15928, - [SMALL_STATE(735)] = 16024, - [SMALL_STATE(736)] = 16120, - [SMALL_STATE(737)] = 16216, - [SMALL_STATE(738)] = 16312, - [SMALL_STATE(739)] = 16408, - [SMALL_STATE(740)] = 16504, - [SMALL_STATE(741)] = 16600, - [SMALL_STATE(742)] = 16696, - [SMALL_STATE(743)] = 16792, - [SMALL_STATE(744)] = 16888, - [SMALL_STATE(745)] = 16984, - [SMALL_STATE(746)] = 17080, - [SMALL_STATE(747)] = 17176, - [SMALL_STATE(748)] = 17272, - [SMALL_STATE(749)] = 17368, - [SMALL_STATE(750)] = 17464, - [SMALL_STATE(751)] = 17560, - [SMALL_STATE(752)] = 17656, - [SMALL_STATE(753)] = 17752, - [SMALL_STATE(754)] = 17848, - [SMALL_STATE(755)] = 17944, - [SMALL_STATE(756)] = 18040, - [SMALL_STATE(757)] = 18136, - [SMALL_STATE(758)] = 18232, - [SMALL_STATE(759)] = 18328, - [SMALL_STATE(760)] = 18424, - [SMALL_STATE(761)] = 18520, - [SMALL_STATE(762)] = 18616, - [SMALL_STATE(763)] = 18712, - [SMALL_STATE(764)] = 18808, - [SMALL_STATE(765)] = 18904, - [SMALL_STATE(766)] = 19000, - [SMALL_STATE(767)] = 19096, - [SMALL_STATE(768)] = 19162, - [SMALL_STATE(769)] = 19258, - [SMALL_STATE(770)] = 19354, - [SMALL_STATE(771)] = 19450, - [SMALL_STATE(772)] = 19546, - [SMALL_STATE(773)] = 19642, - [SMALL_STATE(774)] = 19738, - [SMALL_STATE(775)] = 19834, - [SMALL_STATE(776)] = 19930, - [SMALL_STATE(777)] = 20026, - [SMALL_STATE(778)] = 20092, - [SMALL_STATE(779)] = 20188, - [SMALL_STATE(780)] = 20284, - [SMALL_STATE(781)] = 20380, - [SMALL_STATE(782)] = 20476, - [SMALL_STATE(783)] = 20572, - [SMALL_STATE(784)] = 20668, - [SMALL_STATE(785)] = 20764, - [SMALL_STATE(786)] = 20860, - [SMALL_STATE(787)] = 20956, - [SMALL_STATE(788)] = 21022, - [SMALL_STATE(789)] = 21118, - [SMALL_STATE(790)] = 21214, - [SMALL_STATE(791)] = 21310, - [SMALL_STATE(792)] = 21380, - [SMALL_STATE(793)] = 21476, - [SMALL_STATE(794)] = 21542, - [SMALL_STATE(795)] = 21638, - [SMALL_STATE(796)] = 21734, - [SMALL_STATE(797)] = 21830, - [SMALL_STATE(798)] = 21926, - [SMALL_STATE(799)] = 22022, - [SMALL_STATE(800)] = 22118, - [SMALL_STATE(801)] = 22214, - [SMALL_STATE(802)] = 22310, - [SMALL_STATE(803)] = 22406, - [SMALL_STATE(804)] = 22472, - [SMALL_STATE(805)] = 22568, - [SMALL_STATE(806)] = 22664, - [SMALL_STATE(807)] = 22760, - [SMALL_STATE(808)] = 22856, - [SMALL_STATE(809)] = 22922, - [SMALL_STATE(810)] = 23002, - [SMALL_STATE(811)] = 23098, - [SMALL_STATE(812)] = 23194, - [SMALL_STATE(813)] = 23290, - [SMALL_STATE(814)] = 23386, - [SMALL_STATE(815)] = 23482, - [SMALL_STATE(816)] = 23578, - [SMALL_STATE(817)] = 23648, - [SMALL_STATE(818)] = 23744, - [SMALL_STATE(819)] = 23824, - [SMALL_STATE(820)] = 23920, - [SMALL_STATE(821)] = 24016, - [SMALL_STATE(822)] = 24112, - [SMALL_STATE(823)] = 24208, - [SMALL_STATE(824)] = 24304, - [SMALL_STATE(825)] = 24400, - [SMALL_STATE(826)] = 24496, - [SMALL_STATE(827)] = 24592, - [SMALL_STATE(828)] = 24688, - [SMALL_STATE(829)] = 24784, - [SMALL_STATE(830)] = 24880, - [SMALL_STATE(831)] = 24976, - [SMALL_STATE(832)] = 25072, - [SMALL_STATE(833)] = 25168, - [SMALL_STATE(834)] = 25264, - [SMALL_STATE(835)] = 25360, - [SMALL_STATE(836)] = 25456, - [SMALL_STATE(837)] = 25552, - [SMALL_STATE(838)] = 25648, - [SMALL_STATE(839)] = 25744, - [SMALL_STATE(840)] = 25840, - [SMALL_STATE(841)] = 25936, - [SMALL_STATE(842)] = 26032, - [SMALL_STATE(843)] = 26128, - [SMALL_STATE(844)] = 26224, - [SMALL_STATE(845)] = 26320, - [SMALL_STATE(846)] = 26416, - [SMALL_STATE(847)] = 26512, - [SMALL_STATE(848)] = 26608, - [SMALL_STATE(849)] = 26704, - [SMALL_STATE(850)] = 26800, - [SMALL_STATE(851)] = 26896, - [SMALL_STATE(852)] = 26992, - [SMALL_STATE(853)] = 27088, - [SMALL_STATE(854)] = 27184, - [SMALL_STATE(855)] = 27280, - [SMALL_STATE(856)] = 27376, - [SMALL_STATE(857)] = 27472, - [SMALL_STATE(858)] = 27568, - [SMALL_STATE(859)] = 27664, - [SMALL_STATE(860)] = 27760, - [SMALL_STATE(861)] = 27856, - [SMALL_STATE(862)] = 27924, - [SMALL_STATE(863)] = 28020, - [SMALL_STATE(864)] = 28116, - [SMALL_STATE(865)] = 28212, - [SMALL_STATE(866)] = 28308, - [SMALL_STATE(867)] = 28404, - [SMALL_STATE(868)] = 28500, - [SMALL_STATE(869)] = 28596, - [SMALL_STATE(870)] = 28692, - [SMALL_STATE(871)] = 28788, - [SMALL_STATE(872)] = 28884, - [SMALL_STATE(873)] = 28980, - [SMALL_STATE(874)] = 29076, - [SMALL_STATE(875)] = 29172, - [SMALL_STATE(876)] = 29268, - [SMALL_STATE(877)] = 29364, - [SMALL_STATE(878)] = 29460, - [SMALL_STATE(879)] = 29556, - [SMALL_STATE(880)] = 29652, - [SMALL_STATE(881)] = 29748, - [SMALL_STATE(882)] = 29844, - [SMALL_STATE(883)] = 29940, - [SMALL_STATE(884)] = 30036, - [SMALL_STATE(885)] = 30132, - [SMALL_STATE(886)] = 30228, - [SMALL_STATE(887)] = 30324, - [SMALL_STATE(888)] = 30420, - [SMALL_STATE(889)] = 30516, - [SMALL_STATE(890)] = 30578, - [SMALL_STATE(891)] = 30629, - [SMALL_STATE(892)] = 30679, - [SMALL_STATE(893)] = 30729, - [SMALL_STATE(894)] = 30779, - [SMALL_STATE(895)] = 30829, - [SMALL_STATE(896)] = 30862, - [SMALL_STATE(897)] = 30891, - [SMALL_STATE(898)] = 30920, - [SMALL_STATE(899)] = 30955, - [SMALL_STATE(900)] = 30984, - [SMALL_STATE(901)] = 31013, - [SMALL_STATE(902)] = 31042, - [SMALL_STATE(903)] = 31071, - [SMALL_STATE(904)] = 31104, - [SMALL_STATE(905)] = 31133, - [SMALL_STATE(906)] = 31162, - [SMALL_STATE(907)] = 31191, - [SMALL_STATE(908)] = 31220, - [SMALL_STATE(909)] = 31249, - [SMALL_STATE(910)] = 31278, - [SMALL_STATE(911)] = 31311, - [SMALL_STATE(912)] = 31350, - [SMALL_STATE(913)] = 31389, - [SMALL_STATE(914)] = 31421, - [SMALL_STATE(915)] = 31461, - [SMALL_STATE(916)] = 31493, - [SMALL_STATE(917)] = 31531, - [SMALL_STATE(918)] = 31569, - [SMALL_STATE(919)] = 31607, - [SMALL_STATE(920)] = 31637, - [SMALL_STATE(921)] = 31667, - [SMALL_STATE(922)] = 31699, - [SMALL_STATE(923)] = 31731, - [SMALL_STATE(924)] = 31767, - [SMALL_STATE(925)] = 31803, - [SMALL_STATE(926)] = 31833, - [SMALL_STATE(927)] = 31869, - [SMALL_STATE(928)] = 31901, - [SMALL_STATE(929)] = 31931, - [SMALL_STATE(930)] = 31961, - [SMALL_STATE(931)] = 31997, - [SMALL_STATE(932)] = 32033, - [SMALL_STATE(933)] = 32063, - [SMALL_STATE(934)] = 32099, - [SMALL_STATE(935)] = 32129, - [SMALL_STATE(936)] = 32159, - [SMALL_STATE(937)] = 32189, - [SMALL_STATE(938)] = 32218, - [SMALL_STATE(939)] = 32253, - [SMALL_STATE(940)] = 32288, - [SMALL_STATE(941)] = 32323, - [SMALL_STATE(942)] = 32358, - [SMALL_STATE(943)] = 32393, - [SMALL_STATE(944)] = 32428, - [SMALL_STATE(945)] = 32457, - [SMALL_STATE(946)] = 32492, - [SMALL_STATE(947)] = 32527, - [SMALL_STATE(948)] = 32556, - [SMALL_STATE(949)] = 32591, - [SMALL_STATE(950)] = 32626, - [SMALL_STATE(951)] = 32661, - [SMALL_STATE(952)] = 32696, - [SMALL_STATE(953)] = 32731, - [SMALL_STATE(954)] = 32760, - [SMALL_STATE(955)] = 32789, - [SMALL_STATE(956)] = 32824, - [SMALL_STATE(957)] = 32859, - [SMALL_STATE(958)] = 32894, - [SMALL_STATE(959)] = 32929, - [SMALL_STATE(960)] = 32964, - [SMALL_STATE(961)] = 32999, - [SMALL_STATE(962)] = 33034, - [SMALL_STATE(963)] = 33069, - [SMALL_STATE(964)] = 33104, - [SMALL_STATE(965)] = 33139, - [SMALL_STATE(966)] = 33174, - [SMALL_STATE(967)] = 33209, - [SMALL_STATE(968)] = 33244, - [SMALL_STATE(969)] = 33279, - [SMALL_STATE(970)] = 33314, - [SMALL_STATE(971)] = 33343, - [SMALL_STATE(972)] = 33378, - [SMALL_STATE(973)] = 33413, - [SMALL_STATE(974)] = 33448, - [SMALL_STATE(975)] = 33483, - [SMALL_STATE(976)] = 33515, - [SMALL_STATE(977)] = 33540, - [SMALL_STATE(978)] = 33565, - [SMALL_STATE(979)] = 33590, - [SMALL_STATE(980)] = 33615, - [SMALL_STATE(981)] = 33640, - [SMALL_STATE(982)] = 33660, - [SMALL_STATE(983)] = 33673, - [SMALL_STATE(984)] = 33684, - [SMALL_STATE(985)] = 33695, - [SMALL_STATE(986)] = 33708, - [SMALL_STATE(987)] = 33721, - [SMALL_STATE(988)] = 33734, - [SMALL_STATE(989)] = 33747, - [SMALL_STATE(990)] = 33760, - [SMALL_STATE(991)] = 33773, - [SMALL_STATE(992)] = 33786, - [SMALL_STATE(993)] = 33799, - [SMALL_STATE(994)] = 33812, - [SMALL_STATE(995)] = 33825, - [SMALL_STATE(996)] = 33838, - [SMALL_STATE(997)] = 33848, - [SMALL_STATE(998)] = 33858, - [SMALL_STATE(999)] = 33866, - [SMALL_STATE(1000)] = 33876, - [SMALL_STATE(1001)] = 33886, - [SMALL_STATE(1002)] = 33896, - [SMALL_STATE(1003)] = 33906, - [SMALL_STATE(1004)] = 33916, - [SMALL_STATE(1005)] = 33926, - [SMALL_STATE(1006)] = 33936, - [SMALL_STATE(1007)] = 33946, - [SMALL_STATE(1008)] = 33956, - [SMALL_STATE(1009)] = 33966, - [SMALL_STATE(1010)] = 33976, - [SMALL_STATE(1011)] = 33986, - [SMALL_STATE(1012)] = 33996, - [SMALL_STATE(1013)] = 34006, - [SMALL_STATE(1014)] = 34016, - [SMALL_STATE(1015)] = 34026, - [SMALL_STATE(1016)] = 34036, - [SMALL_STATE(1017)] = 34046, - [SMALL_STATE(1018)] = 34056, - [SMALL_STATE(1019)] = 34064, - [SMALL_STATE(1020)] = 34074, - [SMALL_STATE(1021)] = 34084, - [SMALL_STATE(1022)] = 34092, - [SMALL_STATE(1023)] = 34100, - [SMALL_STATE(1024)] = 34110, - [SMALL_STATE(1025)] = 34120, - [SMALL_STATE(1026)] = 34130, - [SMALL_STATE(1027)] = 34140, - [SMALL_STATE(1028)] = 34150, - [SMALL_STATE(1029)] = 34160, - [SMALL_STATE(1030)] = 34170, - [SMALL_STATE(1031)] = 34180, - [SMALL_STATE(1032)] = 34190, - [SMALL_STATE(1033)] = 34200, - [SMALL_STATE(1034)] = 34207, - [SMALL_STATE(1035)] = 34214, - [SMALL_STATE(1036)] = 34221, - [SMALL_STATE(1037)] = 34228, - [SMALL_STATE(1038)] = 34235, - [SMALL_STATE(1039)] = 34242, - [SMALL_STATE(1040)] = 34249, - [SMALL_STATE(1041)] = 34256, - [SMALL_STATE(1042)] = 34263, - [SMALL_STATE(1043)] = 34270, - [SMALL_STATE(1044)] = 34277, - [SMALL_STATE(1045)] = 34284, - [SMALL_STATE(1046)] = 34291, - [SMALL_STATE(1047)] = 34298, - [SMALL_STATE(1048)] = 34305, - [SMALL_STATE(1049)] = 34312, - [SMALL_STATE(1050)] = 34319, - [SMALL_STATE(1051)] = 34326, - [SMALL_STATE(1052)] = 34333, - [SMALL_STATE(1053)] = 34340, - [SMALL_STATE(1054)] = 34347, - [SMALL_STATE(1055)] = 34354, - [SMALL_STATE(1056)] = 34361, - [SMALL_STATE(1057)] = 34368, - [SMALL_STATE(1058)] = 34375, - [SMALL_STATE(1059)] = 34382, - [SMALL_STATE(1060)] = 34389, - [SMALL_STATE(1061)] = 34396, - [SMALL_STATE(1062)] = 34403, - [SMALL_STATE(1063)] = 34410, - [SMALL_STATE(1064)] = 34417, - [SMALL_STATE(1065)] = 34424, - [SMALL_STATE(1066)] = 34431, - [SMALL_STATE(1067)] = 34438, - [SMALL_STATE(1068)] = 34445, - [SMALL_STATE(1069)] = 34452, - [SMALL_STATE(1070)] = 34459, - [SMALL_STATE(1071)] = 34466, - [SMALL_STATE(1072)] = 34473, - [SMALL_STATE(1073)] = 34480, - [SMALL_STATE(1074)] = 34487, - [SMALL_STATE(1075)] = 34494, - [SMALL_STATE(1076)] = 34501, - [SMALL_STATE(1077)] = 34508, - [SMALL_STATE(1078)] = 34515, - [SMALL_STATE(1079)] = 34522, - [SMALL_STATE(1080)] = 34529, - [SMALL_STATE(1081)] = 34536, - [SMALL_STATE(1082)] = 34543, - [SMALL_STATE(1083)] = 34550, - [SMALL_STATE(1084)] = 34557, - [SMALL_STATE(1085)] = 34564, - [SMALL_STATE(1086)] = 34571, - [SMALL_STATE(1087)] = 34578, - [SMALL_STATE(1088)] = 34585, - [SMALL_STATE(1089)] = 34592, - [SMALL_STATE(1090)] = 34599, - [SMALL_STATE(1091)] = 34606, - [SMALL_STATE(1092)] = 34613, - [SMALL_STATE(1093)] = 34620, - [SMALL_STATE(1094)] = 34627, - [SMALL_STATE(1095)] = 34634, - [SMALL_STATE(1096)] = 34641, - [SMALL_STATE(1097)] = 34648, - [SMALL_STATE(1098)] = 34655, - [SMALL_STATE(1099)] = 34662, - [SMALL_STATE(1100)] = 34669, - [SMALL_STATE(1101)] = 34676, - [SMALL_STATE(1102)] = 34683, - [SMALL_STATE(1103)] = 34690, - [SMALL_STATE(1104)] = 34697, - [SMALL_STATE(1105)] = 34704, - [SMALL_STATE(1106)] = 34711, - [SMALL_STATE(1107)] = 34718, - [SMALL_STATE(1108)] = 34725, - [SMALL_STATE(1109)] = 34732, - [SMALL_STATE(1110)] = 34739, - [SMALL_STATE(1111)] = 34746, - [SMALL_STATE(1112)] = 34753, - [SMALL_STATE(1113)] = 34760, - [SMALL_STATE(1114)] = 34767, - [SMALL_STATE(1115)] = 34774, - [SMALL_STATE(1116)] = 34781, - [SMALL_STATE(1117)] = 34788, - [SMALL_STATE(1118)] = 34795, - [SMALL_STATE(1119)] = 34802, - [SMALL_STATE(1120)] = 34809, - [SMALL_STATE(1121)] = 34816, - [SMALL_STATE(1122)] = 34823, - [SMALL_STATE(1123)] = 34830, - [SMALL_STATE(1124)] = 34837, - [SMALL_STATE(1125)] = 34844, - [SMALL_STATE(1126)] = 34851, - [SMALL_STATE(1127)] = 34858, - [SMALL_STATE(1128)] = 34865, - [SMALL_STATE(1129)] = 34872, - [SMALL_STATE(1130)] = 34879, - [SMALL_STATE(1131)] = 34886, - [SMALL_STATE(1132)] = 34893, - [SMALL_STATE(1133)] = 34900, - [SMALL_STATE(1134)] = 34907, - [SMALL_STATE(1135)] = 34914, - [SMALL_STATE(1136)] = 34921, - [SMALL_STATE(1137)] = 34928, - [SMALL_STATE(1138)] = 34935, - [SMALL_STATE(1139)] = 34942, - [SMALL_STATE(1140)] = 34949, - [SMALL_STATE(1141)] = 34956, - [SMALL_STATE(1142)] = 34963, - [SMALL_STATE(1143)] = 34970, - [SMALL_STATE(1144)] = 34977, - [SMALL_STATE(1145)] = 34984, - [SMALL_STATE(1146)] = 34991, - [SMALL_STATE(1147)] = 34998, - [SMALL_STATE(1148)] = 35005, - [SMALL_STATE(1149)] = 35012, - [SMALL_STATE(1150)] = 35019, - [SMALL_STATE(1151)] = 35026, - [SMALL_STATE(1152)] = 35033, - [SMALL_STATE(1153)] = 35040, - [SMALL_STATE(1154)] = 35047, - [SMALL_STATE(1155)] = 35054, - [SMALL_STATE(1156)] = 35061, - [SMALL_STATE(1157)] = 35068, - [SMALL_STATE(1158)] = 35075, - [SMALL_STATE(1159)] = 35082, - [SMALL_STATE(1160)] = 35089, - [SMALL_STATE(1161)] = 35096, - [SMALL_STATE(1162)] = 35103, - [SMALL_STATE(1163)] = 35110, - [SMALL_STATE(1164)] = 35117, - [SMALL_STATE(1165)] = 35124, - [SMALL_STATE(1166)] = 35131, - [SMALL_STATE(1167)] = 35138, - [SMALL_STATE(1168)] = 35145, - [SMALL_STATE(1169)] = 35152, - [SMALL_STATE(1170)] = 35159, - [SMALL_STATE(1171)] = 35166, - [SMALL_STATE(1172)] = 35173, - [SMALL_STATE(1173)] = 35180, - [SMALL_STATE(1174)] = 35187, - [SMALL_STATE(1175)] = 35194, - [SMALL_STATE(1176)] = 35201, - [SMALL_STATE(1177)] = 35208, - [SMALL_STATE(1178)] = 35215, - [SMALL_STATE(1179)] = 35222, - [SMALL_STATE(1180)] = 35229, - [SMALL_STATE(1181)] = 35236, - [SMALL_STATE(1182)] = 35243, - [SMALL_STATE(1183)] = 35250, - [SMALL_STATE(1184)] = 35257, - [SMALL_STATE(1185)] = 35264, - [SMALL_STATE(1186)] = 35271, - [SMALL_STATE(1187)] = 35278, - [SMALL_STATE(1188)] = 35285, - [SMALL_STATE(1189)] = 35292, - [SMALL_STATE(1190)] = 35299, - [SMALL_STATE(1191)] = 35306, - [SMALL_STATE(1192)] = 35313, - [SMALL_STATE(1193)] = 35320, - [SMALL_STATE(1194)] = 35327, - [SMALL_STATE(1195)] = 35334, - [SMALL_STATE(1196)] = 35341, - [SMALL_STATE(1197)] = 35348, - [SMALL_STATE(1198)] = 35355, - [SMALL_STATE(1199)] = 35362, - [SMALL_STATE(1200)] = 35369, - [SMALL_STATE(1201)] = 35376, - [SMALL_STATE(1202)] = 35383, - [SMALL_STATE(1203)] = 35390, - [SMALL_STATE(1204)] = 35397, - [SMALL_STATE(1205)] = 35404, - [SMALL_STATE(1206)] = 35411, - [SMALL_STATE(1207)] = 35418, - [SMALL_STATE(1208)] = 35425, - [SMALL_STATE(1209)] = 35432, - [SMALL_STATE(1210)] = 35439, - [SMALL_STATE(1211)] = 35446, - [SMALL_STATE(1212)] = 35453, - [SMALL_STATE(1213)] = 35460, - [SMALL_STATE(1214)] = 35467, - [SMALL_STATE(1215)] = 35474, - [SMALL_STATE(1216)] = 35481, - [SMALL_STATE(1217)] = 35488, - [SMALL_STATE(1218)] = 35495, - [SMALL_STATE(1219)] = 35502, - [SMALL_STATE(1220)] = 35509, - [SMALL_STATE(1221)] = 35516, - [SMALL_STATE(1222)] = 35523, - [SMALL_STATE(1223)] = 35530, - [SMALL_STATE(1224)] = 35537, - [SMALL_STATE(1225)] = 35544, - [SMALL_STATE(1226)] = 35551, - [SMALL_STATE(1227)] = 35558, - [SMALL_STATE(1228)] = 35565, - [SMALL_STATE(1229)] = 35572, - [SMALL_STATE(1230)] = 35579, - [SMALL_STATE(1231)] = 35586, - [SMALL_STATE(1232)] = 35593, - [SMALL_STATE(1233)] = 35600, - [SMALL_STATE(1234)] = 35607, - [SMALL_STATE(1235)] = 35614, - [SMALL_STATE(1236)] = 35621, - [SMALL_STATE(1237)] = 35628, - [SMALL_STATE(1238)] = 35635, - [SMALL_STATE(1239)] = 35642, - [SMALL_STATE(1240)] = 35649, - [SMALL_STATE(1241)] = 35656, - [SMALL_STATE(1242)] = 35663, - [SMALL_STATE(1243)] = 35670, - [SMALL_STATE(1244)] = 35677, - [SMALL_STATE(1245)] = 35684, - [SMALL_STATE(1246)] = 35691, - [SMALL_STATE(1247)] = 35698, - [SMALL_STATE(1248)] = 35705, - [SMALL_STATE(1249)] = 35712, - [SMALL_STATE(1250)] = 35719, - [SMALL_STATE(1251)] = 35726, - [SMALL_STATE(1252)] = 35733, - [SMALL_STATE(1253)] = 35740, - [SMALL_STATE(1254)] = 35747, + [SMALL_STATE(492)] = 0, + [SMALL_STATE(493)] = 78, + [SMALL_STATE(494)] = 156, + [SMALL_STATE(495)] = 262, + [SMALL_STATE(496)] = 340, + [SMALL_STATE(497)] = 418, + [SMALL_STATE(498)] = 496, + [SMALL_STATE(499)] = 602, + [SMALL_STATE(500)] = 708, + [SMALL_STATE(501)] = 786, + [SMALL_STATE(502)] = 892, + [SMALL_STATE(503)] = 970, + [SMALL_STATE(504)] = 1048, + [SMALL_STATE(505)] = 1151, + [SMALL_STATE(506)] = 1254, + [SMALL_STATE(507)] = 1327, + [SMALL_STATE(508)] = 1412, + [SMALL_STATE(509)] = 1485, + [SMALL_STATE(510)] = 1588, + [SMALL_STATE(511)] = 1688, + [SMALL_STATE(512)] = 1788, + [SMALL_STATE(513)] = 1888, + [SMALL_STATE(514)] = 1988, + [SMALL_STATE(515)] = 2088, + [SMALL_STATE(516)] = 2188, + [SMALL_STATE(517)] = 2288, + [SMALL_STATE(518)] = 2388, + [SMALL_STATE(519)] = 2488, + [SMALL_STATE(520)] = 2588, + [SMALL_STATE(521)] = 2688, + [SMALL_STATE(522)] = 2788, + [SMALL_STATE(523)] = 2888, + [SMALL_STATE(524)] = 2988, + [SMALL_STATE(525)] = 3088, + [SMALL_STATE(526)] = 3188, + [SMALL_STATE(527)] = 3288, + [SMALL_STATE(528)] = 3388, + [SMALL_STATE(529)] = 3488, + [SMALL_STATE(530)] = 3588, + [SMALL_STATE(531)] = 3688, + [SMALL_STATE(532)] = 3788, + [SMALL_STATE(533)] = 3888, + [SMALL_STATE(534)] = 3988, + [SMALL_STATE(535)] = 4088, + [SMALL_STATE(536)] = 4188, + [SMALL_STATE(537)] = 4288, + [SMALL_STATE(538)] = 4388, + [SMALL_STATE(539)] = 4488, + [SMALL_STATE(540)] = 4588, + [SMALL_STATE(541)] = 4688, + [SMALL_STATE(542)] = 4788, + [SMALL_STATE(543)] = 4888, + [SMALL_STATE(544)] = 4988, + [SMALL_STATE(545)] = 5088, + [SMALL_STATE(546)] = 5188, + [SMALL_STATE(547)] = 5288, + [SMALL_STATE(548)] = 5388, + [SMALL_STATE(549)] = 5488, + [SMALL_STATE(550)] = 5588, + [SMALL_STATE(551)] = 5688, + [SMALL_STATE(552)] = 5788, + [SMALL_STATE(553)] = 5888, + [SMALL_STATE(554)] = 5988, + [SMALL_STATE(555)] = 6088, + [SMALL_STATE(556)] = 6188, + [SMALL_STATE(557)] = 6288, + [SMALL_STATE(558)] = 6388, + [SMALL_STATE(559)] = 6488, + [SMALL_STATE(560)] = 6588, + [SMALL_STATE(561)] = 6688, + [SMALL_STATE(562)] = 6788, + [SMALL_STATE(563)] = 6888, + [SMALL_STATE(564)] = 6988, + [SMALL_STATE(565)] = 7088, + [SMALL_STATE(566)] = 7188, + [SMALL_STATE(567)] = 7288, + [SMALL_STATE(568)] = 7388, + [SMALL_STATE(569)] = 7488, + [SMALL_STATE(570)] = 7588, + [SMALL_STATE(571)] = 7688, + [SMALL_STATE(572)] = 7788, + [SMALL_STATE(573)] = 7888, + [SMALL_STATE(574)] = 7988, + [SMALL_STATE(575)] = 8088, + [SMALL_STATE(576)] = 8188, + [SMALL_STATE(577)] = 8288, + [SMALL_STATE(578)] = 8388, + [SMALL_STATE(579)] = 8488, + [SMALL_STATE(580)] = 8588, + [SMALL_STATE(581)] = 8688, + [SMALL_STATE(582)] = 8788, + [SMALL_STATE(583)] = 8888, + [SMALL_STATE(584)] = 8988, + [SMALL_STATE(585)] = 9088, + [SMALL_STATE(586)] = 9188, + [SMALL_STATE(587)] = 9288, + [SMALL_STATE(588)] = 9388, + [SMALL_STATE(589)] = 9456, + [SMALL_STATE(590)] = 9556, + [SMALL_STATE(591)] = 9656, + [SMALL_STATE(592)] = 9756, + [SMALL_STATE(593)] = 9856, + [SMALL_STATE(594)] = 9956, + [SMALL_STATE(595)] = 10056, + [SMALL_STATE(596)] = 10156, + [SMALL_STATE(597)] = 10256, + [SMALL_STATE(598)] = 10356, + [SMALL_STATE(599)] = 10456, + [SMALL_STATE(600)] = 10556, + [SMALL_STATE(601)] = 10656, + [SMALL_STATE(602)] = 10756, + [SMALL_STATE(603)] = 10856, + [SMALL_STATE(604)] = 10956, + [SMALL_STATE(605)] = 11056, + [SMALL_STATE(606)] = 11156, + [SMALL_STATE(607)] = 11256, + [SMALL_STATE(608)] = 11356, + [SMALL_STATE(609)] = 11456, + [SMALL_STATE(610)] = 11556, + [SMALL_STATE(611)] = 11656, + [SMALL_STATE(612)] = 11756, + [SMALL_STATE(613)] = 11856, + [SMALL_STATE(614)] = 11956, + [SMALL_STATE(615)] = 12056, + [SMALL_STATE(616)] = 12156, + [SMALL_STATE(617)] = 12256, + [SMALL_STATE(618)] = 12356, + [SMALL_STATE(619)] = 12456, + [SMALL_STATE(620)] = 12556, + [SMALL_STATE(621)] = 12656, + [SMALL_STATE(622)] = 12756, + [SMALL_STATE(623)] = 12856, + [SMALL_STATE(624)] = 12956, + [SMALL_STATE(625)] = 13056, + [SMALL_STATE(626)] = 13156, + [SMALL_STATE(627)] = 13256, + [SMALL_STATE(628)] = 13356, + [SMALL_STATE(629)] = 13456, + [SMALL_STATE(630)] = 13556, + [SMALL_STATE(631)] = 13656, + [SMALL_STATE(632)] = 13756, + [SMALL_STATE(633)] = 13856, + [SMALL_STATE(634)] = 13956, + [SMALL_STATE(635)] = 14056, + [SMALL_STATE(636)] = 14156, + [SMALL_STATE(637)] = 14256, + [SMALL_STATE(638)] = 14356, + [SMALL_STATE(639)] = 14456, + [SMALL_STATE(640)] = 14556, + [SMALL_STATE(641)] = 14656, + [SMALL_STATE(642)] = 14756, + [SMALL_STATE(643)] = 14856, + [SMALL_STATE(644)] = 14956, + [SMALL_STATE(645)] = 15056, + [SMALL_STATE(646)] = 15156, + [SMALL_STATE(647)] = 15256, + [SMALL_STATE(648)] = 15356, + [SMALL_STATE(649)] = 15456, + [SMALL_STATE(650)] = 15556, + [SMALL_STATE(651)] = 15656, + [SMALL_STATE(652)] = 15756, + [SMALL_STATE(653)] = 15856, + [SMALL_STATE(654)] = 15956, + [SMALL_STATE(655)] = 16056, + [SMALL_STATE(656)] = 16156, + [SMALL_STATE(657)] = 16256, + [SMALL_STATE(658)] = 16356, + [SMALL_STATE(659)] = 16456, + [SMALL_STATE(660)] = 16524, + [SMALL_STATE(661)] = 16624, + [SMALL_STATE(662)] = 16724, + [SMALL_STATE(663)] = 16792, + [SMALL_STATE(664)] = 16892, + [SMALL_STATE(665)] = 16992, + [SMALL_STATE(666)] = 17092, + [SMALL_STATE(667)] = 17192, + [SMALL_STATE(668)] = 17292, + [SMALL_STATE(669)] = 17392, + [SMALL_STATE(670)] = 17492, + [SMALL_STATE(671)] = 17592, + [SMALL_STATE(672)] = 17660, + [SMALL_STATE(673)] = 17728, + [SMALL_STATE(674)] = 17796, + [SMALL_STATE(675)] = 17896, + [SMALL_STATE(676)] = 17964, + [SMALL_STATE(677)] = 18064, + [SMALL_STATE(678)] = 18164, + [SMALL_STATE(679)] = 18264, + [SMALL_STATE(680)] = 18364, + [SMALL_STATE(681)] = 18464, + [SMALL_STATE(682)] = 18564, + [SMALL_STATE(683)] = 18664, + [SMALL_STATE(684)] = 18764, + [SMALL_STATE(685)] = 18832, + [SMALL_STATE(686)] = 18900, + [SMALL_STATE(687)] = 19000, + [SMALL_STATE(688)] = 19100, + [SMALL_STATE(689)] = 19200, + [SMALL_STATE(690)] = 19300, + [SMALL_STATE(691)] = 19400, + [SMALL_STATE(692)] = 19500, + [SMALL_STATE(693)] = 19568, + [SMALL_STATE(694)] = 19636, + [SMALL_STATE(695)] = 19736, + [SMALL_STATE(696)] = 19836, + [SMALL_STATE(697)] = 19936, + [SMALL_STATE(698)] = 20004, + [SMALL_STATE(699)] = 20104, + [SMALL_STATE(700)] = 20204, + [SMALL_STATE(701)] = 20272, + [SMALL_STATE(702)] = 20340, + [SMALL_STATE(703)] = 20408, + [SMALL_STATE(704)] = 20508, + [SMALL_STATE(705)] = 20608, + [SMALL_STATE(706)] = 20708, + [SMALL_STATE(707)] = 20808, + [SMALL_STATE(708)] = 20908, + [SMALL_STATE(709)] = 21008, + [SMALL_STATE(710)] = 21108, + [SMALL_STATE(711)] = 21176, + [SMALL_STATE(712)] = 21276, + [SMALL_STATE(713)] = 21376, + [SMALL_STATE(714)] = 21476, + [SMALL_STATE(715)] = 21546, + [SMALL_STATE(716)] = 21614, + [SMALL_STATE(717)] = 21714, + [SMALL_STATE(718)] = 21814, + [SMALL_STATE(719)] = 21914, + [SMALL_STATE(720)] = 22014, + [SMALL_STATE(721)] = 22114, + [SMALL_STATE(722)] = 22214, + [SMALL_STATE(723)] = 22314, + [SMALL_STATE(724)] = 22414, + [SMALL_STATE(725)] = 22514, + [SMALL_STATE(726)] = 22614, + [SMALL_STATE(727)] = 22714, + [SMALL_STATE(728)] = 22814, + [SMALL_STATE(729)] = 22914, + [SMALL_STATE(730)] = 23014, + [SMALL_STATE(731)] = 23114, + [SMALL_STATE(732)] = 23214, + [SMALL_STATE(733)] = 23314, + [SMALL_STATE(734)] = 23414, + [SMALL_STATE(735)] = 23514, + [SMALL_STATE(736)] = 23614, + [SMALL_STATE(737)] = 23714, + [SMALL_STATE(738)] = 23814, + [SMALL_STATE(739)] = 23914, + [SMALL_STATE(740)] = 24014, + [SMALL_STATE(741)] = 24114, + [SMALL_STATE(742)] = 24214, + [SMALL_STATE(743)] = 24314, + [SMALL_STATE(744)] = 24414, + [SMALL_STATE(745)] = 24514, + [SMALL_STATE(746)] = 24614, + [SMALL_STATE(747)] = 24714, + [SMALL_STATE(748)] = 24814, + [SMALL_STATE(749)] = 24914, + [SMALL_STATE(750)] = 25014, + [SMALL_STATE(751)] = 25114, + [SMALL_STATE(752)] = 25214, + [SMALL_STATE(753)] = 25314, + [SMALL_STATE(754)] = 25414, + [SMALL_STATE(755)] = 25514, + [SMALL_STATE(756)] = 25614, + [SMALL_STATE(757)] = 25682, + [SMALL_STATE(758)] = 25782, + [SMALL_STATE(759)] = 25882, + [SMALL_STATE(760)] = 25982, + [SMALL_STATE(761)] = 26082, + [SMALL_STATE(762)] = 26182, + [SMALL_STATE(763)] = 26282, + [SMALL_STATE(764)] = 26382, + [SMALL_STATE(765)] = 26482, + [SMALL_STATE(766)] = 26582, + [SMALL_STATE(767)] = 26682, + [SMALL_STATE(768)] = 26748, + [SMALL_STATE(769)] = 26814, + [SMALL_STATE(770)] = 26880, + [SMALL_STATE(771)] = 26946, + [SMALL_STATE(772)] = 27012, + [SMALL_STATE(773)] = 27078, + [SMALL_STATE(774)] = 27144, + [SMALL_STATE(775)] = 27212, + [SMALL_STATE(776)] = 27278, + [SMALL_STATE(777)] = 27344, + [SMALL_STATE(778)] = 27410, + [SMALL_STATE(779)] = 27476, + [SMALL_STATE(780)] = 27542, + [SMALL_STATE(781)] = 27608, + [SMALL_STATE(782)] = 27674, + [SMALL_STATE(783)] = 27740, + [SMALL_STATE(784)] = 27806, + [SMALL_STATE(785)] = 27868, + [SMALL_STATE(786)] = 27920, + [SMALL_STATE(787)] = 27971, + [SMALL_STATE(788)] = 28022, + [SMALL_STATE(789)] = 28073, + [SMALL_STATE(790)] = 28124, + [SMALL_STATE(791)] = 28153, + [SMALL_STATE(792)] = 28182, + [SMALL_STATE(793)] = 28211, + [SMALL_STATE(794)] = 28240, + [SMALL_STATE(795)] = 28269, + [SMALL_STATE(796)] = 28298, + [SMALL_STATE(797)] = 28327, + [SMALL_STATE(798)] = 28360, + [SMALL_STATE(799)] = 28393, + [SMALL_STATE(800)] = 28428, + [SMALL_STATE(801)] = 28457, + [SMALL_STATE(802)] = 28486, + [SMALL_STATE(803)] = 28515, + [SMALL_STATE(804)] = 28544, + [SMALL_STATE(805)] = 28573, + [SMALL_STATE(806)] = 28612, + [SMALL_STATE(807)] = 28645, + [SMALL_STATE(808)] = 28684, + [SMALL_STATE(809)] = 28722, + [SMALL_STATE(810)] = 28760, + [SMALL_STATE(811)] = 28800, + [SMALL_STATE(812)] = 28832, + [SMALL_STATE(813)] = 28870, + [SMALL_STATE(814)] = 28902, + [SMALL_STATE(815)] = 28932, + [SMALL_STATE(816)] = 28968, + [SMALL_STATE(817)] = 29004, + [SMALL_STATE(818)] = 29034, + [SMALL_STATE(819)] = 29070, + [SMALL_STATE(820)] = 29100, + [SMALL_STATE(821)] = 29130, + [SMALL_STATE(822)] = 29162, + [SMALL_STATE(823)] = 29192, + [SMALL_STATE(824)] = 29222, + [SMALL_STATE(825)] = 29252, + [SMALL_STATE(826)] = 29288, + [SMALL_STATE(827)] = 29318, + [SMALL_STATE(828)] = 29354, + [SMALL_STATE(829)] = 29384, + [SMALL_STATE(830)] = 29416, + [SMALL_STATE(831)] = 29448, + [SMALL_STATE(832)] = 29484, + [SMALL_STATE(833)] = 29519, + [SMALL_STATE(834)] = 29554, + [SMALL_STATE(835)] = 29583, + [SMALL_STATE(836)] = 29612, + [SMALL_STATE(837)] = 29647, + [SMALL_STATE(838)] = 29682, + [SMALL_STATE(839)] = 29717, + [SMALL_STATE(840)] = 29752, + [SMALL_STATE(841)] = 29787, + [SMALL_STATE(842)] = 29816, + [SMALL_STATE(843)] = 29851, + [SMALL_STATE(844)] = 29880, + [SMALL_STATE(845)] = 29915, + [SMALL_STATE(846)] = 29950, + [SMALL_STATE(847)] = 29985, + [SMALL_STATE(848)] = 30020, + [SMALL_STATE(849)] = 30055, + [SMALL_STATE(850)] = 30090, + [SMALL_STATE(851)] = 30119, + [SMALL_STATE(852)] = 30154, + [SMALL_STATE(853)] = 30189, + [SMALL_STATE(854)] = 30218, + [SMALL_STATE(855)] = 30253, + [SMALL_STATE(856)] = 30288, + [SMALL_STATE(857)] = 30323, + [SMALL_STATE(858)] = 30358, + [SMALL_STATE(859)] = 30393, + [SMALL_STATE(860)] = 30428, + [SMALL_STATE(861)] = 30463, + [SMALL_STATE(862)] = 30498, + [SMALL_STATE(863)] = 30533, + [SMALL_STATE(864)] = 30568, + [SMALL_STATE(865)] = 30603, + [SMALL_STATE(866)] = 30638, + [SMALL_STATE(867)] = 30673, + [SMALL_STATE(868)] = 30708, + [SMALL_STATE(869)] = 30743, + [SMALL_STATE(870)] = 30775, + [SMALL_STATE(871)] = 30800, + [SMALL_STATE(872)] = 30825, + [SMALL_STATE(873)] = 30850, + [SMALL_STATE(874)] = 30875, + [SMALL_STATE(875)] = 30900, + [SMALL_STATE(876)] = 30913, + [SMALL_STATE(877)] = 30926, + [SMALL_STATE(878)] = 30939, + [SMALL_STATE(879)] = 30952, + [SMALL_STATE(880)] = 30965, + [SMALL_STATE(881)] = 30978, + [SMALL_STATE(882)] = 30989, + [SMALL_STATE(883)] = 31002, + [SMALL_STATE(884)] = 31015, + [SMALL_STATE(885)] = 31028, + [SMALL_STATE(886)] = 31039, + [SMALL_STATE(887)] = 31052, + [SMALL_STATE(888)] = 31065, + [SMALL_STATE(889)] = 31078, + [SMALL_STATE(890)] = 31088, + [SMALL_STATE(891)] = 31098, + [SMALL_STATE(892)] = 31106, + [SMALL_STATE(893)] = 31116, + [SMALL_STATE(894)] = 31124, + [SMALL_STATE(895)] = 31134, + [SMALL_STATE(896)] = 31144, + [SMALL_STATE(897)] = 31154, + [SMALL_STATE(898)] = 31164, + [SMALL_STATE(899)] = 31174, + [SMALL_STATE(900)] = 31184, + [SMALL_STATE(901)] = 31194, + [SMALL_STATE(902)] = 31204, + [SMALL_STATE(903)] = 31212, + [SMALL_STATE(904)] = 31222, + [SMALL_STATE(905)] = 31232, + [SMALL_STATE(906)] = 31242, + [SMALL_STATE(907)] = 31252, + [SMALL_STATE(908)] = 31262, + [SMALL_STATE(909)] = 31272, + [SMALL_STATE(910)] = 31282, + [SMALL_STATE(911)] = 31292, + [SMALL_STATE(912)] = 31302, + [SMALL_STATE(913)] = 31312, + [SMALL_STATE(914)] = 31322, + [SMALL_STATE(915)] = 31332, + [SMALL_STATE(916)] = 31342, + [SMALL_STATE(917)] = 31352, + [SMALL_STATE(918)] = 31362, + [SMALL_STATE(919)] = 31372, + [SMALL_STATE(920)] = 31380, + [SMALL_STATE(921)] = 31390, + [SMALL_STATE(922)] = 31400, + [SMALL_STATE(923)] = 31407, + [SMALL_STATE(924)] = 31414, + [SMALL_STATE(925)] = 31421, + [SMALL_STATE(926)] = 31428, + [SMALL_STATE(927)] = 31435, + [SMALL_STATE(928)] = 31442, + [SMALL_STATE(929)] = 31449, + [SMALL_STATE(930)] = 31456, + [SMALL_STATE(931)] = 31463, + [SMALL_STATE(932)] = 31470, + [SMALL_STATE(933)] = 31477, + [SMALL_STATE(934)] = 31484, + [SMALL_STATE(935)] = 31491, + [SMALL_STATE(936)] = 31498, + [SMALL_STATE(937)] = 31505, + [SMALL_STATE(938)] = 31512, + [SMALL_STATE(939)] = 31519, + [SMALL_STATE(940)] = 31526, + [SMALL_STATE(941)] = 31533, + [SMALL_STATE(942)] = 31540, + [SMALL_STATE(943)] = 31547, + [SMALL_STATE(944)] = 31554, + [SMALL_STATE(945)] = 31561, + [SMALL_STATE(946)] = 31568, + [SMALL_STATE(947)] = 31575, + [SMALL_STATE(948)] = 31582, + [SMALL_STATE(949)] = 31589, + [SMALL_STATE(950)] = 31596, + [SMALL_STATE(951)] = 31603, + [SMALL_STATE(952)] = 31610, + [SMALL_STATE(953)] = 31617, + [SMALL_STATE(954)] = 31624, + [SMALL_STATE(955)] = 31631, + [SMALL_STATE(956)] = 31638, + [SMALL_STATE(957)] = 31645, + [SMALL_STATE(958)] = 31652, + [SMALL_STATE(959)] = 31659, + [SMALL_STATE(960)] = 31666, + [SMALL_STATE(961)] = 31673, + [SMALL_STATE(962)] = 31680, + [SMALL_STATE(963)] = 31687, + [SMALL_STATE(964)] = 31694, + [SMALL_STATE(965)] = 31701, + [SMALL_STATE(966)] = 31708, + [SMALL_STATE(967)] = 31715, + [SMALL_STATE(968)] = 31722, + [SMALL_STATE(969)] = 31729, + [SMALL_STATE(970)] = 31736, + [SMALL_STATE(971)] = 31743, + [SMALL_STATE(972)] = 31750, + [SMALL_STATE(973)] = 31757, + [SMALL_STATE(974)] = 31764, + [SMALL_STATE(975)] = 31771, + [SMALL_STATE(976)] = 31778, + [SMALL_STATE(977)] = 31785, + [SMALL_STATE(978)] = 31792, + [SMALL_STATE(979)] = 31799, + [SMALL_STATE(980)] = 31806, + [SMALL_STATE(981)] = 31813, + [SMALL_STATE(982)] = 31820, + [SMALL_STATE(983)] = 31827, + [SMALL_STATE(984)] = 31834, + [SMALL_STATE(985)] = 31841, + [SMALL_STATE(986)] = 31848, + [SMALL_STATE(987)] = 31855, + [SMALL_STATE(988)] = 31862, + [SMALL_STATE(989)] = 31869, + [SMALL_STATE(990)] = 31876, + [SMALL_STATE(991)] = 31883, + [SMALL_STATE(992)] = 31890, + [SMALL_STATE(993)] = 31897, + [SMALL_STATE(994)] = 31904, + [SMALL_STATE(995)] = 31911, + [SMALL_STATE(996)] = 31918, + [SMALL_STATE(997)] = 31925, + [SMALL_STATE(998)] = 31932, + [SMALL_STATE(999)] = 31939, + [SMALL_STATE(1000)] = 31946, + [SMALL_STATE(1001)] = 31953, + [SMALL_STATE(1002)] = 31960, + [SMALL_STATE(1003)] = 31967, + [SMALL_STATE(1004)] = 31974, + [SMALL_STATE(1005)] = 31981, + [SMALL_STATE(1006)] = 31988, + [SMALL_STATE(1007)] = 31995, + [SMALL_STATE(1008)] = 32002, + [SMALL_STATE(1009)] = 32009, + [SMALL_STATE(1010)] = 32016, + [SMALL_STATE(1011)] = 32023, + [SMALL_STATE(1012)] = 32030, + [SMALL_STATE(1013)] = 32037, + [SMALL_STATE(1014)] = 32044, + [SMALL_STATE(1015)] = 32051, + [SMALL_STATE(1016)] = 32058, + [SMALL_STATE(1017)] = 32065, + [SMALL_STATE(1018)] = 32072, + [SMALL_STATE(1019)] = 32079, + [SMALL_STATE(1020)] = 32086, + [SMALL_STATE(1021)] = 32093, + [SMALL_STATE(1022)] = 32100, + [SMALL_STATE(1023)] = 32107, + [SMALL_STATE(1024)] = 32114, + [SMALL_STATE(1025)] = 32121, + [SMALL_STATE(1026)] = 32128, + [SMALL_STATE(1027)] = 32135, + [SMALL_STATE(1028)] = 32142, + [SMALL_STATE(1029)] = 32149, + [SMALL_STATE(1030)] = 32156, + [SMALL_STATE(1031)] = 32163, + [SMALL_STATE(1032)] = 32170, + [SMALL_STATE(1033)] = 32177, + [SMALL_STATE(1034)] = 32184, + [SMALL_STATE(1035)] = 32191, + [SMALL_STATE(1036)] = 32198, + [SMALL_STATE(1037)] = 32205, + [SMALL_STATE(1038)] = 32212, + [SMALL_STATE(1039)] = 32219, + [SMALL_STATE(1040)] = 32226, + [SMALL_STATE(1041)] = 32233, + [SMALL_STATE(1042)] = 32240, + [SMALL_STATE(1043)] = 32247, + [SMALL_STATE(1044)] = 32254, + [SMALL_STATE(1045)] = 32261, + [SMALL_STATE(1046)] = 32268, + [SMALL_STATE(1047)] = 32275, + [SMALL_STATE(1048)] = 32282, + [SMALL_STATE(1049)] = 32289, + [SMALL_STATE(1050)] = 32296, + [SMALL_STATE(1051)] = 32303, + [SMALL_STATE(1052)] = 32310, + [SMALL_STATE(1053)] = 32317, + [SMALL_STATE(1054)] = 32324, + [SMALL_STATE(1055)] = 32331, + [SMALL_STATE(1056)] = 32338, + [SMALL_STATE(1057)] = 32345, + [SMALL_STATE(1058)] = 32352, + [SMALL_STATE(1059)] = 32359, + [SMALL_STATE(1060)] = 32366, + [SMALL_STATE(1061)] = 32373, + [SMALL_STATE(1062)] = 32380, + [SMALL_STATE(1063)] = 32387, + [SMALL_STATE(1064)] = 32394, + [SMALL_STATE(1065)] = 32401, + [SMALL_STATE(1066)] = 32408, + [SMALL_STATE(1067)] = 32415, + [SMALL_STATE(1068)] = 32422, + [SMALL_STATE(1069)] = 32429, + [SMALL_STATE(1070)] = 32436, + [SMALL_STATE(1071)] = 32443, + [SMALL_STATE(1072)] = 32450, + [SMALL_STATE(1073)] = 32457, + [SMALL_STATE(1074)] = 32464, + [SMALL_STATE(1075)] = 32471, + [SMALL_STATE(1076)] = 32478, + [SMALL_STATE(1077)] = 32485, + [SMALL_STATE(1078)] = 32492, + [SMALL_STATE(1079)] = 32499, + [SMALL_STATE(1080)] = 32506, + [SMALL_STATE(1081)] = 32513, + [SMALL_STATE(1082)] = 32520, + [SMALL_STATE(1083)] = 32527, + [SMALL_STATE(1084)] = 32534, + [SMALL_STATE(1085)] = 32541, + [SMALL_STATE(1086)] = 32548, + [SMALL_STATE(1087)] = 32555, + [SMALL_STATE(1088)] = 32562, + [SMALL_STATE(1089)] = 32569, + [SMALL_STATE(1090)] = 32576, + [SMALL_STATE(1091)] = 32583, + [SMALL_STATE(1092)] = 32590, + [SMALL_STATE(1093)] = 32597, + [SMALL_STATE(1094)] = 32604, + [SMALL_STATE(1095)] = 32611, + [SMALL_STATE(1096)] = 32618, + [SMALL_STATE(1097)] = 32625, + [SMALL_STATE(1098)] = 32632, + [SMALL_STATE(1099)] = 32639, + [SMALL_STATE(1100)] = 32646, + [SMALL_STATE(1101)] = 32653, + [SMALL_STATE(1102)] = 32660, + [SMALL_STATE(1103)] = 32667, + [SMALL_STATE(1104)] = 32674, + [SMALL_STATE(1105)] = 32681, + [SMALL_STATE(1106)] = 32688, + [SMALL_STATE(1107)] = 32695, + [SMALL_STATE(1108)] = 32702, + [SMALL_STATE(1109)] = 32709, + [SMALL_STATE(1110)] = 32716, + [SMALL_STATE(1111)] = 32723, + [SMALL_STATE(1112)] = 32730, + [SMALL_STATE(1113)] = 32737, + [SMALL_STATE(1114)] = 32744, + [SMALL_STATE(1115)] = 32751, + [SMALL_STATE(1116)] = 32758, + [SMALL_STATE(1117)] = 32765, + [SMALL_STATE(1118)] = 32772, + [SMALL_STATE(1119)] = 32779, + [SMALL_STATE(1120)] = 32786, + [SMALL_STATE(1121)] = 32793, + [SMALL_STATE(1122)] = 32800, + [SMALL_STATE(1123)] = 32807, + [SMALL_STATE(1124)] = 32814, + [SMALL_STATE(1125)] = 32821, + [SMALL_STATE(1126)] = 32828, + [SMALL_STATE(1127)] = 32835, + [SMALL_STATE(1128)] = 32842, + [SMALL_STATE(1129)] = 32849, + [SMALL_STATE(1130)] = 32856, + [SMALL_STATE(1131)] = 32863, + [SMALL_STATE(1132)] = 32870, + [SMALL_STATE(1133)] = 32877, + [SMALL_STATE(1134)] = 32884, + [SMALL_STATE(1135)] = 32891, + [SMALL_STATE(1136)] = 32898, }; 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(189), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(161), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(985), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(862), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(407), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(407), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(408), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(599), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(768), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(615), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(277), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(666), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1170), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1171), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(873), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1173), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1174), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1247), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1029), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1077), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(251), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1028), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(168), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(161), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(985), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(862), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(407), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(407), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(408), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(599), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(768), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(615), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(277), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(666), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1170), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1171), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(873), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1173), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1174), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1247), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1029), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1077), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(251), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(987), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1028), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(168), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(162), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(864), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(667), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(254), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(737), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1121), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1122), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(608), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1124), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1125), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1241), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1008), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1198), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(293), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1005), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(182), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(162), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(864), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(667), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(254), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(737), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1121), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1122), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(608), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1124), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1125), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1241), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1008), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1198), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(293), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1005), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(182), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(163), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(858), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(870), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(323), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(629), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1156), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1157), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(852), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1159), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1160), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1245), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1026), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1091), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(276), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1015), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(184), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(164), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(982), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(782), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(481), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(481), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(475), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(582), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(836), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(257), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(871), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1229), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1230), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(681), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1232), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1233), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1254), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1002), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1104), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(252), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1006), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(195), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(163), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(858), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(870), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(323), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(629), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1156), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1157), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(852), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1159), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1160), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1245), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1091), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(276), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1015), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(184), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(164), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(982), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(782), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(481), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(475), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(582), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(836), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(257), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(871), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1229), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1230), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(681), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1232), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1233), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1254), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1002), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1104), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(252), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1006), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(195), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(165), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(710), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(682), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(288), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(863), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1098), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1099), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(771), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1101), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1102), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1239), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1012), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1093), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(255), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1014), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(201), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(165), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(710), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(682), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(288), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(863), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1098), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1099), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(771), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1101), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1102), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1239), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1012), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1093), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(255), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1014), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(201), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(166), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(739), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(315), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(866), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1196), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1197), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(835), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1199), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1200), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1250), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1025), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1066), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(312), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1023), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(214), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(166), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(739), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(315), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(866), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1196), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1197), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(835), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1199), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1200), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1250), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1025), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1066), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(312), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1023), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(214), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(173), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(817), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(316), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(634), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1213), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1214), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(672), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1216), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1217), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1252), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1024), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1191), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(310), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(997), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(216), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(173), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(817), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(316), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(634), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1213), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1214), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(672), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1216), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1217), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1252), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1024), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1191), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(310), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(997), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(216), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(178), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(711), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(290), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(713), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1185), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1186), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(884), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1188), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1189), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1249), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1013), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1195), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(320), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1007), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(221), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(178), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(711), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(713), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1185), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1186), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(884), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1188), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1189), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1249), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1013), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1195), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(320), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1007), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(221), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(546), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(990), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(708), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(906), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(906), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(897), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(600), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(987), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(1003), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(538), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(409), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(985), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(862), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(407), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(407), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(408), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(599), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(277), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(987), - [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1028), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(168), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(254), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1005), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(182), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(466), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(982), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(782), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(481), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(481), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(475), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(582), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(257), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1006), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(195), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(169), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(614), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(776), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(652), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1141), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1142), - [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(847), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1034), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1145), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1243), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1011), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(256), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(987), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(169), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(614), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(776), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(652), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1141), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1142), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(847), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1034), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1145), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1243), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1011), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(256), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1), SHIFT(987), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(315), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1023), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(214), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(172), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(663), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(865), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(868), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1061), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1062), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(643), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1064), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1065), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1237), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1017), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(286), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(172), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(663), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(865), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(868), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1061), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1062), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(643), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1064), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1065), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1237), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1017), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(286), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(189), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(235), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(782), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(481), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(481), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(475), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(582), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(663), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(665), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(290), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(669), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1105), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1231), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(684), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1223), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1215), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1207), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1019), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1195), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(250), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(987), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(1007), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(221), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(189), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(665), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(669), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1105), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1231), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(684), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1223), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1215), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1207), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1019), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(250), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(189), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(665), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(669), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1105), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1231), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(684), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1223), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1215), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1207), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1019), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(250), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(193), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(886), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(785), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1221), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1222), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(683), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1224), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1225), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1253), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(999), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(245), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(193), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(886), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(785), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1221), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1222), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(683), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1224), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1225), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(1253), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(999), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1), SHIFT(245), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(340), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(990), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(708), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(906), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(906), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(897), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(600), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(679), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(883), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(253), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(688), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1205), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1206), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(775), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1208), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1209), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1251), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1020), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1042), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(273), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(987), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1000), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(364), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(295), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1009), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(352), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(402), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(833), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(872), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(274), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(1032), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(364), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(640), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(491), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(987), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(735), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(885), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(794), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(466), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(982), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(782), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(481), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(481), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(475), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(582), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(274), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(987), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(1032), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(364), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(705), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(983), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1116), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2762] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(147), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(882), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(751), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(386), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(386), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(339), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(504), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(269), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(651), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(560), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(265), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(629), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1053), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1054), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(530), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1056), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1057), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1129), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(915), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(925), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(886), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(904), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(160), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(148), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(260), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(750), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(646), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(259), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(522), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1004), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1005), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(546), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1007), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1008), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1123), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(917), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1023), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(895), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(168), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(149), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(875), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(556), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(443), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(443), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(444), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(505), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(263), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(543), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(221), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(619), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1103), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1104), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(517), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1106), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1107), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1135), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(916), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(988), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(913), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(172), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(150), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(253), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(691), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(586), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(252), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(593), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1039), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1040), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(533), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1042), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1043), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1127), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(906), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(971), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(914), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(177), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(152), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(245), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(551), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(244), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(741), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1078), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1079), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(523), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1081), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1082), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1132), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(892), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(922), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(903), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(189), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(151), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(266), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(647), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(688), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(267), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(558), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(982), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(983), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(550), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(985), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(986), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1121), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(911), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(972), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(905), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(191), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(159), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(276), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(547), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(275), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(633), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1095), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1096), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(519), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1098), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1099), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1134), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(907), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1074), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(890), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(198), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(167), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(227), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(648), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(230), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(650), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1068), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1069), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(525), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1071), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1072), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1131), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(918), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1000), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(909), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(209), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 2), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(462), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(878), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(643), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(792), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(792), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(791), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(509), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(281), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(886), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(894), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(209), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__context_defined_function, 2), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(341), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(882), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(751), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(386), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(386), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(339), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(504), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(269), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(265), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(886), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(904), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(160), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_built_in_function, 1), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(260), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(259), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(895), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(168), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(475), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(875), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(556), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(443), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(443), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(444), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(505), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(263), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(221), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(913), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(172), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(245), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(244), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(903), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(189), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(161), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(559), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(620), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(554), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1024), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1025), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(541), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1027), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1028), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1125), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(899), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(886), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(158), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(529), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(742), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(625), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(944), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(945), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(557), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(947), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(948), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1119), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(897), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(171), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(531), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(534), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1022), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1021), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(544), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1019), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1012), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1002), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(910), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(178), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(526), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(585), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1111), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1112), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(515), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1114), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1115), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1136), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(921), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(302), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(878), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(643), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(792), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(792), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(791), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(509), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(229), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(559), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(526), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(228), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(686), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1087), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1088), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(520), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1090), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1091), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1133), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(908), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(1083), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(886), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(912), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(189), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(631), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(384), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(737), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 1), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 1), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(674), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future, 2), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_future, 2), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 1), SHIFT_REPEAT(468), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(886), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(670), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(886), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(555), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(707), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(885), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(1033), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1), + [1845] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), }; #ifdef __cplusplus